removed docker build step

This commit is contained in:
matthewpdias 2018-03-07 15:29:59 -08:00
parent 79b053c200
commit 3153997748

View file

@ -10,11 +10,7 @@ pipeline {
stages {
stage('Build') {
agent {
docker {
image 'maven:3.5.0'
}
}
agent any
steps {
configFileProvider([configFile(fileId: 'nexus', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn -s $MAVEN_SETTINGS clean deploy -DskipTests=true -B'