This commit is contained in:
Manpreet Singh 2020-03-15 15:06:55 -04:00 committed by GitHub
parent 27c173e266
commit 0f4073eaa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

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