Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 03:06:09 -04:00 committed by GitHub
parent 2d0cfaea5d
commit 160d7c644c
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 clean' bat './mvnw clean'
} }
} }
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'
} }
} }
} }