Shadow Version
5.1.0
Gradle Version
5.6
Expected Behavior
I want the final artifact name to not have version number in it, so I am trying this snippet from documentation:
shadowJar {
baseName = 'shadow'
classifier = null
version = null
}
also tried
shadowJar {
classifier = null
archiveVersion = null
}
Actual Behavior
"classifier" is removed as expected, but "version" is still added to the final artifact name.