Update Jenkinsfile

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

2
Jenkinsfile vendored
View file

@ -5,10 +5,10 @@ pipeline {
steps { steps {
sh './mvnw package' sh './mvnw package'
} }
}
stage('Test') { stage('Test') {
steps { steps {
sh './mvnw package' sh './mvnw package'
} }
} }
} }
}