Update Jenkinsfile

This commit is contained in:
KevinHTrinh 2020-03-16 02:23:33 -04:00 committed by GitHub
parent f4aa52954c
commit d4c9abb200
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

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