Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 01:54:52 -04:00 committed by GitHub
parent 6e23e7ef65
commit 8060656241
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

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