standardized JAR naming to gittally.jar (version-free); updated scripts, docs, and build config to align; added --version support via BuildProperties

This commit is contained in:
Michael Hoennig
2026-07-08 22:45:23 +02:00
parent d0b38c557a
commit 347efc16c5
9 changed files with 38 additions and 18 deletions
+7 -1
View File
@@ -9,7 +9,7 @@ plugins {
}
group = "de.hoennig"
version = "0.1.0-SNAPSHOT"
version = "0.9.0"
java {
toolchain {
@@ -63,6 +63,12 @@ springBoot {
}
}
tasks.bootJar {
// version-free jar name, so docs and scripts never contain the version;
// the version itself stays available via BuildProperties (UI footer, --version)
archiveFileName = "gittally.jar"
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll("-Xjsr305=strict")