Added a version file for easier management of versions

This commit is contained in:
Anthony Cicchetti 2019-06-15 15:20:09 -04:00
parent b6146f9adf
commit 1e50ca3b4b
3 changed files with 9 additions and 3 deletions

1
VERSION Normal file
View file

@ -0,0 +1 @@
0.1.2

View file

@ -8,7 +8,7 @@ plugins {
}
group = "com.anthonycicchetti"
version = "0.1.2"
version = file("VERSION").readText().trim()
repositories {
mavenCentral()
@ -36,4 +36,4 @@ tasks.withType<Test> {
testLogging {
events("passed", "skipped", "failed")
}
}
}

View file

@ -1,6 +1,11 @@
version := `cat VERSION`
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"
build:
./gradlew shadowJar
print_version:
@echo "{{version}}"