added test, package, deploy

This commit is contained in:
arthur tourneyrie 2020-03-15 15:47:44 -04:00
parent 1503c4882c
commit c96778a634

15
Jenkinsfile vendored
View file

@ -5,6 +5,21 @@ pipeline {
steps {
sh './mvnw package'
}
},
stage('Test') {
steps {
sh './mvnw package'
}
},
stage('Package') {
steps {
sh './mvnw package'
}
},
stage('Deploy') {
steps {
sh './mvnw package'
}
}
}
}