Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 02:48:44 -04:00 committed by GitHub
parent c9902d3a32
commit e442707164
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 build'
bat './mvnw build'
}
}
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'
}
}
}