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