c322cbd3de
Update to gradle 3.1 Add new maven handling
15 lines
No EOL
196 B
Groovy
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"
|
|
} |