Created a jenkinsfile

This commit is contained in:
viveanban 2020-03-16 08:18:08 -04:00
parent de871078d2
commit 7c2a9ad38a

11
Jenkinsfile vendored Normal file
View file

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