This commit is contained in:
Manpreet Singh 2020-03-15 15:31:41 -04:00 committed by GitHub
parent d550f75ffc
commit 7630df7541
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -3,17 +3,17 @@ pipeline {
stages {
stage('Build') {
steps {
sh './mvnw clean'
sh 'mvn clean'
}
}
stage('Test'){
steps {
sh './mvnw test'
sh 'mvn test'
}
}
stage('Package') {
steps {
sh './mvnw package'
sh 'mvn package'
}
}
}