-
-
Notifications
You must be signed in to change notification settings - Fork 480
/
build.gradle
42 lines (37 loc) · 1.47 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
34
35
36
37
38
39
40
41
42
plugins {
id 'au.com.dius.pact.kotlin-library-conventions'
}
description = 'Pact-JVM - Provider test support library'
group = 'au.com.dius.pact'
dependencies {
api project(':core:support')
api project(':core:model')
api project(':core:matchers')
api project(':core:pactbroker')
api 'org.apache.httpcomponents.client5:httpclient5'
api 'io.github.classgraph:classgraph:4.8.129'
api('io.pact.plugin.driver:core') {
exclude group: 'au.com.dius.pact.core'
}
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.slf4j:slf4j-api'
implementation 'org.apache.commons:commons-lang3'
implementation 'org.apache.commons:commons-collections4'
implementation 'com.github.ajalt:mordant:1.2.1'
implementation 'com.vladsch.flexmark:flexmark:0.62.2'
implementation 'com.vladsch.flexmark:flexmark-ext-tables:0.62.2'
implementation 'org.apache.groovy:groovy'
implementation 'com.michael-bull.kotlin-result:kotlin-result:1.1.14'
testImplementation 'org.hamcrest:hamcrest'
testImplementation 'org.spockframework:spock-core'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'org.apache.groovy:groovy-json'
testImplementation 'org.mockito:mockito-core:4.9.0'
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
testImplementation 'junit:junit'
testImplementation 'io.dropwizard:dropwizard-testing:2.1.3'
}
compileTestGroovy {
classpath = classpath.plus(files(compileTestKotlin.destinationDirectory))
dependsOn compileTestKotlin
}