Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 03:01:52 -04:00 committed by GitHub
parent bf5146a357
commit 2d0cfaea5d
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'
} }
} }
} }