Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 03:06:09 -04:00 committed by GitHub
parent 2d0cfaea5d
commit 160d7c644c
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 {
sh './mvnw clean'
bat './mvnw clean'
}
}
stage('Test') {
steps {
sh './mvnw test'
bat './mvnw test'
}
}
stage('Package') {
steps {
sh './mvnw package'
bat './mvnw package'
}
}
stage('Deploy') {
steps {
sh './mvnw deploy'
bat './mvnw deploy'
}
}
}