forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (27 loc) · 1.3 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
dependencies {
api project(path: ":core:support", configuration: 'default'),
project(path: ":provider", configuration: 'default')
compile "org.apache.httpcomponents:fluent-hc:${project.httpClientVersion}",
"org.apache.httpcomponents:httpclient:${project.httpClientVersion}",
"junit:junit:${project.junitVersion}",
"org.apache.commons:commons-lang3:${project.commonsLang3Version}",
'org.jooq:jool:0.9.14'
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
compile 'com.github.rholder:guava-retrying:2.0.0'
compile 'javax.mail:mail:1.5.0-b01'
testCompile 'com.github.rest-driver:rest-client-driver:1.1.45'
testCompile "ch.qos.logback:logback-classic:${project.logbackVersion}"
testCompile 'org.apache.commons:commons-collections4:4.1'
// Required for Java 9
testCompile 'javax.xml.bind:jaxb-api:2.3.0'
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile('org.spockframework:spock-core:2.0-M2-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testRuntime "net.bytebuddy:byte-buddy:${project.bytebuddyVersion}"
testRuntime 'org.objenesis:objenesis:3.1'
}
test {
systemProperty 'pact.showStacktrace', 'true'
}