Added a version file for easier management of versions
This commit is contained in:
parent
b6146f9adf
commit
1e50ca3b4b
3 changed files with 9 additions and 3 deletions
1
VERSION
Normal file
1
VERSION
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0.1.2
|
|
@ -8,7 +8,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "com.anthonycicchetti"
|
group = "com.anthonycicchetti"
|
||||||
version = "0.1.2"
|
version = file("VERSION").readText().trim()
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -36,4 +36,4 @@ tasks.withType<Test> {
|
||||||
testLogging {
|
testLogging {
|
||||||
events("passed", "skipped", "failed")
|
events("passed", "skipped", "failed")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
7
justfile
7
justfile
|
@ -1,6 +1,11 @@
|
||||||
|
version := `cat VERSION`
|
||||||
|
|
||||||
push: build
|
push: build
|
||||||
scp ./build/libs/slackmemes-0.1.0-all.jar anthonycicchetti.com:/home/slackbot/slackbot.jar
|
scp ./build/libs/slackmemes-{{version}}-all.jar anthonycicchetti.com:/home/slackbot/slackbot.jar
|
||||||
ssh anthonycicchetti.com "service slackbot restart"
|
ssh anthonycicchetti.com "service slackbot restart"
|
||||||
|
|
||||||
build:
|
build:
|
||||||
./gradlew shadowJar
|
./gradlew shadowJar
|
||||||
|
|
||||||
|
print_version:
|
||||||
|
@echo "{{version}}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue