We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 84031d3 + 14effd8 commit 7849fefCopy full SHA for 7849fef
1 file changed
build.gradle
@@ -223,8 +223,11 @@ task runProviderPactVerification(type: Test) {
223
useJUnitPlatform()
224
testClassesDirs = sourceSets.contractTest.output.classesDirs
225
classpath = sourceSets.contractTest.runtimeClasspath
226
- systemProperty 'pact.verifier.publishResults', System.getProperty('pact.verifier.publishResults')
+ if (project.hasProperty('pact.verifier.publishResults')) {
227
+ systemProperty 'pact.verifier.publishResults', project.property('pact.verifier.publishResults')
228
+ }
229
systemProperty 'pact.provider.version', project.pactVersion
230
+ include "uk/gov/hmcts/reform/lrdapi/provider/**"
231
}
232
233
task fortifyScan(type: JavaExec) {
0 commit comments