Open jpenilla opened 1 year ago
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
+
SpongePluginGradle#addRuntimeDependency
As a workaround I forced the version with
configurations.spongeRuntime { resolutionStrategy { eachDependency { if (target.name == "spongevanilla") { useVersion("1.20.1-11.0.0-RC1356") } } } }
1.20.+ also seems to work for the version override workaround
1.20.+
The
+
version fromSpongePluginGradle#addRuntimeDependency
is 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