Added Jenkinsfile

This commit is contained in:
Demian 2020-04-03 21:13:48 -03:00
parent fd1618b125
commit a9a14b2781

2
Jenkinsfile vendored
View file

@ -4,6 +4,7 @@ pipeline {
image 'maven:alpine' image 'maven:alpine'
args '-v /root/.m2:/root/.m2' args '-v /root/.m2:/root/.m2'
} }
} }
stages { stages {
stage('Build') { stage('Build') {
@ -11,5 +12,6 @@ pipeline {
sh 'mvn clean install -Dlicense.skip=true' sh 'mvn clean install -Dlicense.skip=true'
} }
} }
} }
} }