Add Jenkinsfile

This commit is contained in:
Demian 2020-04-07 14:35:31 -03:00
parent 8ed6b491b3
commit c1af0c0c9d

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'
}
}
}
}