Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 08:55:10 -04:00 committed by GitHub
parent 160d7c644c
commit 1f4aacd5e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -3,22 +3,22 @@ pipeline {
stages {
stage('Build') {
steps {
bat './mvnw clean'
sh './mvnw clean'
}
}
stage('Test') {
steps {
bat './mvnw test'
sh './mvnw test'
}
}
stage('Package') {
steps {
bat './mvnw package'
sh './mvnw package'
}
}
stage('Deploy') {
steps {
bat './mvnw deploy'
sh './mvnw deploy'
}
}
}