master- Sync Repo

This commit is contained in:
Mali Bayhan 2021-12-10 09:59:33 -08:00
parent 37723776f0
commit 5560817d31

View File

@ -18,14 +18,14 @@ pipeline {
stage('Build') {
steps {
dir('messaging-app') {
sh '../mvnw clean verify'
sh 'mvn clean verify'
}
}
}
stage('Publish Pacts') {
steps {
dir('messaging-app') {
sh '../mvnw pact:publish -Dpact.consumer.version=${GIT_COMMIT} -Dpact.tag=${BRANCH_NAME}'
sh 'mvn pact:publish -Dpact.consumer.version=${GIT_COMMIT} -Dpact.tag=${BRANCH_NAME}'
}
}
}