xtext-core/Jenkinsfile
2016-06-15 16:40:42 +02:00

9 lines
No EOL
176 B
Groovy

// tell Jenkins how to build projects from this repository
node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "./gradlew build"
archive '**/build/**/*.jar'
}