-
-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy pathbuild.gradle
32 lines (27 loc) · 1.17 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
plugins {
id 'au.com.dius.pact.kotlin-library-conventions'
}
description = 'Pact-JVM - JUnit 5 support for Pact consumer tests'
group = 'au.com.dius.pact.consumer'
dependencies {
api project(":consumer")
api 'org.junit.jupiter:junit-jupiter-api:5.9.2'
implementation 'org.slf4j:slf4j-api'
testImplementation 'ch.qos.logback:logback-core'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'io.github.http-builder-ng:http-builder-ng-apache:1.0.4'
testImplementation 'org.apache.groovy:groovy'
testImplementation 'org.apache.groovy:groovy-json'
testImplementation 'org.apache.groovy:groovy-xml'
testImplementation 'org.apache.commons:commons-io:1.3.2'
testImplementation 'org.mockito:mockito-core:4.9.0'
testImplementation 'org.hamcrest:hamcrest'
testImplementation 'org.apache.httpcomponents.client5:httpclient5'
testImplementation('io.rest-assured:rest-assured:5.3.0') {
exclude group: 'org.apache.groovy'
}
testImplementation 'org.apache.commons:commons-collections4'
// JAX-B dependencies for JDK 9+
testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3'
testImplementation 'org.glassfish.jaxb:jaxb-runtime:2.3.3'
}