edit to jenkins file

This commit is contained in:
carlitalabbe 2020-04-02 13:28:48 -04:00
parent 5873eb7011
commit f1012b277e

8
Jenkinsfile vendored
View file

@ -7,17 +7,17 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw clean compile' sh 'mvn clean compile'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
sh './mvnw test' sh 'mvn test'
} }
} }
stage('Package') { stage('Package') {
steps { steps {
sh './mvnw package' sh 'mvn package'
} }
} }
@ -27,7 +27,7 @@ pipeline {
branch 'master' branch 'master'
} }
steps { steps {
sh './mvnw deploy' sh 'mvn deploy'
} }
} }