Merge pull request #1 from Landry333/Landry333-patch-1

Create Jenkinsfile
This commit is contained in:
landry333 2020-03-16 20:20:37 -04:00 committed by GitHub
commit ee87650bda
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'
}
}
}
}