We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb690ef commit 235820cCopy full SHA for 235820c
gradle/java_no_deps.gradle
@@ -315,9 +315,9 @@ if (project.plugins.hasPlugin('com.gradleup.shadow')) {
315
}
316
317
318
-if (project.hasProperty("removeJarVersionNumbers") && removeJarVersionNumbers) {
+if (project.hasProperty("removeJarVersionNumbers") && project.findProperty("removeJarVersionNumbers").asBoolean()) {
319
tasks.withType(AbstractArchiveTask).configureEach {
320
- archiveVersion.convention(null)
+ archiveVersion.unsetConvention()
321
archiveVersion.set(null)
322
323
0 commit comments