Add Jenkinsfile back, as intermediary now exists for this version.

This commit is contained in:
modmuss50 2020-04-02 14:52:19 +01:00
parent babd30a29f
commit 8a23fc71e1
1 changed files with 15 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build publish --refresh-dependencies"
stage "Archive artifacts"
archive 'build/libs/*'
}