Update Jenkinsfile

This commit is contained in:
Pam 2020-04-15 22:30:28 -04:00 committed by GitHub
parent 2b58c8d590
commit aae8fb9288
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -3,7 +3,7 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw clean package' sh './mvnw clean compile'
} }
} }
stage('Test') { stage('Test') {
@ -13,7 +13,7 @@ pipeline {
} }
stage('Package') { stage('Package') {
steps { steps {
echo 'package' echo './mvn package'
} }
} }
stage('Deploy') { stage('Deploy') {