master- Sync Repo

This commit is contained in:
Mali Bayhan
2021-12-10 09:49:13 -08:00
parent 77e3169e6b
commit 6c2157dac5
18 changed files with 505 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!groovy
pipeline {
agent any
stages {
stage('Build') {
steps {
dir('user-service') {
sh "../mvnw clean verify " +
"-Dpact.provider.version=${GIT_COMMIT} " +
"-Dpact.verifier.publishResults=true"
}
}
}
}
}