-
-
Notifications
You must be signed in to change notification settings - Fork 483
/
Copy pathbuild.gradle
32 lines (26 loc) · 995 Bytes
/
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 - Groovy DSL for Pact JVM consumer tests'
group = 'au.com.dius.pact.consumer'
dependencies {
api project(":consumer")
implementation 'org.apache.groovy:groovy'
implementation 'org.apache.groovy:groovy-json'
implementation 'org.apache.httpcomponents.client5:httpclient5'
implementation 'com.github.mifmif:generex:1.0.2'
implementation 'org.apache.commons:commons-lang3'
implementation 'org.apache.commons:commons-collections4'
implementation('io.pact.plugin.driver:core') {
exclude group: 'au.com.dius.pact.core'
}
testImplementation 'junit:junit'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'org.apache.groovy:groovy-xml'
testImplementation 'org.apache.groovy:groovy-dateutil'
groovyDoc 'org.apache.groovy:groovy-all:4.0.11'
}
compileGroovy {
dependsOn compileKotlin
classpath = classpath.plus(files(compileKotlin.destinationDirectory))
}