Added Jenkinsfile

This commit is contained in:
Demian 2020-04-01 13:27:58 -03:00
parent 0c4c7d5c36
commit 90271b2664

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'mvn clean install -Dlicense.skip=true'
}
}
}
}