diff --git a/jenkins/cd/Jenkinsfile b/jenkins/cd/Jenkinsfile index 21729c1..a77453f 100644 --- a/jenkins/cd/Jenkinsfile +++ b/jenkins/cd/Jenkinsfile @@ -17,16 +17,16 @@ pipeline { stages { stage('Build') { steps { - dir('messaging-app') { + // dir('messaging-app') { sh 'mvn clean verify' - } + // } } } stage('Publish Pacts') { steps { - dir('messaging-app') { + // dir('messaging-app') { sh 'mvn pact:publish -Dpact.consumer.version=${GIT_COMMIT} -Dpact.tag=${BRANCH_NAME}' - } + // } } } stage('Check Pact Verifications') {