Create Jenkinsfile

This commit is contained in:
Pam 2020-04-15 17:36:41 -04:00 committed by GitHub
parent 56f09331aa
commit a6b6d7cc0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './mvnw package'
}
}
}
}