diff --git a/Jenkinsfile b/Jenkinsfile index 12e3683d3..ca867a16b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,15 +1,17 @@ pipeline { - agent { - docker { - image 'maven:alpine' - args '-v /root/.m2:/root/.m2' - } + agent { + docker { + image 'maven:alpine' + args '-v /root/.m2:/root/.m2' } - stages { - stage('Build') { - steps { - sh 'mvn clean install -Dlicense.skip=true' - } - } + + } + stages { + stage('Build') { + steps { + sh 'mvn clean install -Dlicense.skip=true' + } } + + } } \ No newline at end of file