-
-
Notifications
You must be signed in to change notification settings - Fork 483
/
Copy pathbuild.gradle
18 lines (17 loc) · 914 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dependencies {
compile project(path: ":pact-jvm-support", configuration: 'default'),
project(path: ":pact-jvm-provider_${project.scalaVersion}", configuration: 'default'),
"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'
compile "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'
}