Jenkinsfile modif

This commit is contained in:
Mina Selim 2020-03-15 20:34:50 -04:00
parent bcb2d9264b
commit c027ffcd9c

15
Jenkinsfile vendored
View file

@ -2,9 +2,24 @@ pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps {
sh './mvnw compile'
}
},
stage('Test') {
steps {
sh './mvnw test'
}
},
stage('Package') {
steps { steps {
sh './mvnw package' sh './mvnw package'
} }
},
stage('deploy') {
steps {
sh './mvnw deploy'
}
} }
} }
} }