forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (37 loc) · 1.83 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
dependencies {
api project(':core:model')
api project(':core:matchers')
api project(':core:support')
// For some wierd reason, this is not resolving correctly
api project(':core:pactbroker')
// api 'au.com.dius.pact.core:pactbroker:4.3.0-beta.7'
api 'io.github.classgraph:classgraph:4.8.129'
api('com.michael-bull.kotlin-result:kotlin-result:1.1.12') {
exclude group: 'org.jetbrains.kotlin'
}
implementation 'commons-io:commons-io:2.11.0'
implementation "org.apache.httpcomponents.client5:httpclient5:${project.httpClientVersion}"
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
implementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
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.commons:commons-collections4:4.4'
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
implementation "io.pact.plugin.driver:core:${project.pluginDriverVersion}"
testImplementation "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testRuntimeOnly "ch.qos.logback:logback-classic:${project.logbackVersion}"
testImplementation 'io.dropwizard:dropwizard-testing:1.3.7'
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation 'org.mockito:mockito-core:2.28.2'
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
testImplementation('org.spockframework:spock-core:2.0-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testImplementation 'org.hamcrest:hamcrest:2.2'
}
test {
useJUnitPlatform()
maxHeapSize = "1g"
}