Create Jenkinsfile

This commit is contained in:
Demian 2020-04-07 13:22:42 -03:00
parent f229d1acc1
commit 4cfb01ac45

15
Jenkinsfile vendored Normal file
View file

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