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 { stages {
stage('Build') { stage('Build') {
steps { steps {
bat './mvnw clean' sh './mvnw clean'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
bat './mvnw test' sh './mvnw test'
} }
} }
stage('Package') { stage('Package') {
steps { steps {
bat './mvnw package' sh './mvnw package'
} }
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
bat './mvnw deploy' sh './mvnw deploy'
} }
} }
} }