Update Jenkinsfile

This commit is contained in:
Muneeb Nezameddin 2020-03-16 02:39:50 -04:00 committed by GitHub
parent a08eef23ba
commit c8a3e6acd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -6,17 +6,17 @@ pipeline {
bat './mvnw compile' bat './mvnw compile'
} }
} }
stage('Test') stage('Test') {
steps { steps {
bat './mvnw test' bat './mvnw test'
} }
} }
stage('Package') stage('Package') {
steps { steps {
bat './mvnw package' bat './mvnw package'
} }
} }
stage('Deploy') stage('Deploy') {
steps { steps {
bat './mvnw deploy' bat './mvnw deploy'
} }