Update Jenkinsfile

This commit is contained in:
Tan Yong Heng 2017-07-22 20:55:05 +08:00 committed by GitHub
parent 3759271aa6
commit 12064a41de

12
Jenkinsfile vendored
View file

@ -1,15 +1,15 @@
pipeline {
agent { docker 'maven:3.3.3' }
stages {
stage('prebuild') {
steps {
sh 'whoami'
}
}
stage('build') {
stage('pre-build') {
steps {
sh 'mvn --version'
}
}
stage('build') {
steps {
sh 'mvn compile'
}
}
}
}