yarn/Jenkinsfile

11 lines
158 B
Plaintext
Raw Normal View History

2016-09-09 08:47:32 -04:00
node {
stage 'Checkout'
2016-09-10 06:35:26 -04:00
checkout scm
2016-09-09 08:47:32 -04:00
stage 'Build'
sh "rm -rf build/libs/"
sh "./gradlew build javadocJar publish --refresh-dependencies"
2016-09-09 08:47:32 -04:00
}