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
+2 -2
View File
@@ -19,14 +19,14 @@ Build the executable jar once:
```bash
./gradlew build
ls build/libs/gittally-*-SNAPSHOT.jar
ls build/libs/gittally.jar
```
Copy the jar to a stable path outside any watched repository, by convention `~/bin/gittally.jar`:
```bash
mkdir -p ~/bin
cp build/libs/gittally-0.1.0-SNAPSHOT.jar ~/bin/gittally.jar
cp build/libs/gittally.jar ~/bin/gittally.jar
```
The systemd unit generated below points at the jar that was used to run `init --systemd`.