TechReborn/Jenkinsfile

14 lines
231 B
Text
Raw Normal View History

2019-07-25 15:16:30 +02:00
node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "chmod +x gradlew"
2019-07-25 15:35:27 +02:00
sh "./gradlew clean build publish curseTools --refresh-dependencies --stacktrace"
2019-07-25 15:16:30 +02:00
stage "Archive artifacts"
archive 'build/libs/*'
}