Update Jenkinsfile

This commit is contained in:
Claudia Lapalme 2020-03-16 11:58:09 -04:00 committed by GitHub
parent 748caa1ee0
commit 4ce785806e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View file

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