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 { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw clean' sh 'mvn clean'
} }
} }
stage('Test'){ stage('Test'){
steps { steps {
sh './mvnw test' sh 'mvn test'
} }
} }
stage('Package') { stage('Package') {
steps { steps {
sh './mvnw package' sh 'mvn package'
} }
} }
} }