Update Jenkinsfile

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

4
Jenkinsfile vendored
View file

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