The + version from SpongePluginGradle#addRuntimeDependency is selecting 1.20 over 1.20.1, it's also in the wrong order on the Nexus web ui

As a workaround I forced the version with
configurations.spongeRuntime {
resolutionStrategy {
eachDependency {
if (target.name == "spongevanilla") {
useVersion("1.20.1-11.0.0-RC1356")
}
}
}
}
The
+version fromSpongePluginGradle#addRuntimeDependencyis selecting 1.20 over 1.20.1, it's also in the wrong order on the Nexus web uiAs a workaround I forced the version with
configurations.spongeRuntime { resolutionStrategy { eachDependency { if (target.name == "spongevanilla") { useVersion("1.20.1-11.0.0-RC1356") } } } }