#!groovy
pipeline {

  agent any

  stages {
    stage('Build') {
      steps {
        dir('user-service') {
          sh "../mvnw clean verify " +
                  "-Dpact.provider.version=${GIT_COMMIT} " +
                  "-Dpact.verifier.publishResults=true"
        }
      }
    }
  }

}