forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (29 loc) · 1.48 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
dependencies {
api project(':core:support')
api project(':provider')
api "junit:junit:${project.junitVersion}"
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}",
'org.jooq:jool:0.9.14'
implementation "org.apache.httpcomponents.client5:httpclient5:${project.httpClientVersion}"
implementation "org.apache.httpcomponents.client5:httpclient5-fluent:${project.httpClientVersion}"
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
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:1.1.45'
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.27.2'
testImplementation "ch.qos.logback:logback-classic:${project.logbackVersion}"
testImplementation 'org.apache.commons:commons-collections4:4.1'
// Required for Java 9
testImplementation 'javax.xml.bind:jaxb-api:2.3.0'
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
testImplementation('org.spockframework:spock-core:2.0-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testRuntimeOnly "net.bytebuddy:byte-buddy:${project.bytebuddyVersion}"
testRuntimeOnly 'org.objenesis:objenesis:3.1'
}
test {
systemProperty 'pact.showStacktrace', 'true'
}