remove build step from jenkinsfile

This commit is contained in:
dbmuse 2017-12-29 08:17:36 -05:00
parent c95efc5e7c
commit 0d6662e831

View file

@ -6,11 +6,6 @@ pipeline{
git 'https://github.com/dbmuse/spring-petclinic.git'
}
}
stage ('Build') {
steps {
sh 'mvn clean package'
junit '**/target/surefire-reports/Test-*.xml'
}
}
}
}