forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (33 loc) · 1.34 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'au.com.dius.pact.kotlin-library-conventions'
}
description = 'Pact-JVM - Provider JUnit support library'
group = 'au.com.dius.pact.provider'
dependencies {
api project(':provider')
api project(':core:support')
api project(':core:pactbroker')
api project(':core:model')
api 'junit:junit:4.13.2'
api 'org.apache.httpcomponents.client5:httpclient5'
implementation 'org.apache.commons:commons-lang3'
implementation 'org.jooq:jool:0.9.14'
implementation 'org.apache.httpcomponents.client5:httpclient5-fluent'
implementation 'org.slf4j:slf4j-api'
implementation 'com.github.rholder:guava-retrying:2.0.0'
implementation 'javax.mail:mail:1.5.0-b01'
implementation 'commons-io:commons-io:2.11.0'
testImplementation 'com.github.rest-driver:rest-client-driver:2.0.1'
testImplementation 'com.github.tomakehurst:wiremock-jre8'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'org.apache.commons:commons-collections4'
testImplementation 'org.junit.vintage:junit-vintage-engine'
// Required for Java 9
testImplementation 'javax.xml.bind:jaxb-api:2.3.0'
testImplementation 'org.apache.groovy:groovy'
testRuntimeOnly 'net.bytebuddy:byte-buddy'
testRuntimeOnly 'org.objenesis:objenesis:3.1'
}
test {
systemProperty 'pact.showStacktrace', 'true'
}