forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (23 loc) · 1.23 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
dependencies {
api project(":consumer")
implementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
implementation "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
implementation "org.apache.httpcomponents.client5:httpclient5:${project.httpClientVersion}"
implementation 'com.github.mifmif:generex:1.0.2'
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
implementation 'org.apache.commons:commons-collections4:4.4'
testImplementation "junit:junit:${project.junitVersion}"
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.groovyVersion}"
testImplementation "org.codehaus.groovy:groovy-dateutil:${project.groovyVersion}"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation('org.spockframework:spock-core:2.0-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
groovyDoc "org.codehaus.groovy:groovy-all:${project.groovyVersion}"
}
compileGroovy {
dependsOn compileKotlin
classpath = classpath.plus(files(compileKotlin.destinationDir))
}