build stage only

This commit is contained in:
khalilalturk 2020-03-15 20:06:38 -04:00
parent 5a3aef68a2
commit f503fdf2be

24
Jenkinsfile vendored
View file

@ -6,28 +6,6 @@ pipeline {
sh './mvnw package'
}
}
stage('Test') {
steps {
sh 'mvn test'
}
}
stage('Package') {
steps {
sh 'mvn package'
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
sh './mvnw deploy'
}
}
}
}
}