forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (24 loc) · 1.33 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
dependencies {
api project(path: ":consumer", configuration: 'default')
compile "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
testCompile "ch.qos.logback:logback-core:${project.logbackVersion}",
"ch.qos.logback:logback-classic:${project.logbackVersion}"
testCompile "io.github.http-builder-ng:http-builder-ng-apache:${project.httpBuilderVersion}"
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testCompile "org.codehaus.groovy:groovy-xml:${project.groovyVersion}"
testCompile 'org.apache.commons:commons-io:1.3.2'
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testRuntime "org.junit.jupiter:junit-jupiter-engine:${project.junit5Version}"
testCompile 'org.mockito:mockito-core:2.28.2'
testCompile 'org.hamcrest:hamcrest:2.1'
testCompile('org.spockframework:spock-core:2.0-M4-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testCompile "org.apache.httpcomponents:httpclient:${project.httpClientVersion}"
testCompile 'com.jayway.restassured:rest-assured:2.9.0'
// JAX-B dependencies for JDK 9+
testCompile "jakarta.xml.bind:jakarta.xml.bind-api:2.3.2"
testCompile "org.glassfish.jaxb:jaxb-runtime:2.3.2"
}