Experimenting

This commit is contained in:
Shahzad Chaudhry 2017-09-13 15:24:36 +01:00
parent 0a328cdc2a
commit b8696bc486
No known key found for this signature in database
GPG key ID: 8CDCE5A10A08219C

4
Jenkinsfile vendored
View file

@ -12,12 +12,12 @@ pipeline {
stages { stages {
stage("build") { stage("build") {
steps { steps {
sh 'mvn -Dmaven.test.failure.ignore=true --settings /var/jenkins_home/settings-docker.xml clean package' sh 'mvn -Dmaven.test.failure.ignore=true clean package'
} }
} }
stage('Quality Gates') { stage('Quality Gates') {
steps { steps {
sh 'mvn --settings /var/jenkins_home/settings-docker.xml sonar:sonar' sh 'mvn sonar:sonar'
} }
} }
stage('Deploy - Dev') { stage('Deploy - Dev') {