fabric-loom/Jenkinsfile
modmuss50 c322cbd3de Use weave
Update to gradle 3.1
Add new maven handling
2016-09-22 20:33:47 +01:00

15 lines
No EOL
196 B
Groovy

node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build"
stage "Archive artifacts"
sh "./gradlew upload"
}