Update Jenkinsfile

This commit is contained in:
Muneeb Nezameddin 2020-03-16 04:27:51 -04:00 committed by GitHub
parent 9ec93888c6
commit 48cdddca94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
Jenkinsfile vendored
View file

@ -6,10 +6,24 @@ pipeline {
bat './mvnw compile'
}
}
stage('Test') {
steps {
bat './mvnw test'
}
}
stage('Package') {
steps {
bat './mvnw package'
}
}
stage('Deploy') {
steps {
echo 'Deployed Successfully'
}
}
}
post {
success {
always {
emailext body: 'A Test EMail',
recipientProviders: [[$class: 'DevelopersRecipientProvider'],
[$class: 'RequesterRecipientProvider']],