Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 02:07:11 -04:00 committed by GitHub
parent 8060656241
commit 0b65086406
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View file

@ -11,5 +11,20 @@ pipeline {
sh './mvnw test'
}
}
stage('Test') {
steps {
sh './mvnw test'
}
}
stage('Package') {
steps {
sh './mvnw package'
}
}
stage('Deploy') {
steps {
sh './mvnw deploy'
}
}
}
}