Create Jenkinsfile

This commit is contained in:
Demian 2020-04-01 01:55:56 -03:00
parent fcd1c8ad03
commit cee7fd46a5

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'maven:3-alpine'
args '-v /root/.m2:/root/.m2'
}
}
stages {
stage('Build') {
steps {
sh 'mvn -B -DskipTests clean package'
}
}
}
}