Jenkinsfile

This commit is contained in:
Szabó Barnabás 2018-01-29 23:05:20 +01:00
parent 3f928b677f
commit 2f32de5a8d

2
Jenkinsfile vendored
View file

@ -12,7 +12,7 @@ pipeline {
stage('Build the code') {
steps {
script {
docker.image('openjdk:8-jdk-alpine').inside('-v /tmp/.m2:/root/.m2') {
docker.image('openjdk:8-jdk-alpine').inside('-v /var/jenkins_home/.m2:/root/.m2') {
sh '''
./mvnw clean package -DskipTests -T 2
'''