forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
22 lines (19 loc) · 970 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
dependencies {
api project(":consumer")
implementation "org.codehaus.groovy:groovy:${project.groovy2Version}"
implementation "org.codehaus.groovy:groovy-json:${project.groovy2Version}"
implementation 'org.apache.httpcomponents:httpmime:4.5.12'
testImplementation "io.github.http-builder-ng:http-builder-ng-apache:${project.httpBuilderVersion}",
"ch.qos.logback:logback-classic:${project.logbackVersion}"
testImplementation "org.codehaus.groovy:groovy-xml:${project.groovy2Version}"
testImplementation "org.codehaus.groovy:groovy-dateutil:${project.groovy2Version}"
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation('org.spockframework:spock-core:2.0-M2-groovy-2.5') {
exclude group: 'org.codehaus.groovy'
}
groovyDoc "org.codehaus.groovy:groovy-all:${project.groovy2Version}"
}
compileGroovy {
dependsOn compileKotlin
classpath = classpath.plus(files(compileKotlin.destinationDir))
}