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 {
stage('Build') {
steps {
sh './mvnw clean compile'
sh 'mvn clean compile'
}
}
stage('Test') {
steps {
sh './mvnw test'
sh 'mvn test'
}
}
stage('Package') {
steps {
sh './mvnw package'
sh 'mvn package'
}
}
@ -27,7 +27,7 @@ pipeline {
branch 'master'
}
steps {
sh './mvnw deploy'
sh 'mvn deploy'
}
}