Sebastian Schuberth
07/10/2025, 2:49 PMTrevJonez
07/10/2025, 3:02 PMa Gradle plugin I use that sets a Gradle project's version based on the Git historycan you disable that behavior for local builds and only do it when actually publishing?
Sebastian Schuberth
07/10/2025, 3:03 PMThomas Broyer
07/10/2025, 3:05 PMtasks.withType<Jar>().configureEach {
// Don't include the version in the JAR filename
archiveVersion.unsetConvention()
}
Sebastian Schuberth
07/10/2025, 3:09 PMVampire
07/10/2025, 3:42 PM@Classpath
or @CompileClasspath
names might be ignored.
If it is used as some input file with @PathSensitivity(NONE)
, the name is ignored.
But in other cases where it is used as input file with at least NAME_ONLY
sensitivity, the file name is significant.