Create JenkinsFile

This commit is contained in:
Chen 2020-03-08 18:30:20 -04:00 committed by GitHub
parent ac3e64208e
commit 6a7f695017
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
JenkinsFile Normal file
View file

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