Skip to content

Commit 887908f

Browse files
author
Ronald Holshausen
authoredFeb 16, 2020
Merge branch 'master' into jcenter-https
2 parents f88fb8c + 3d4bc07 commit 887908f

File tree

61 files changed

+1359
-576
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1359
-576
lines changed
 

‎build.gradle

+17-14
Original file line numberDiff line numberDiff line change
@@ -72,21 +72,24 @@ subprojects {
7272
jcenter()
7373
}
7474

75-
dependencies {
76-
testCompile "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
77-
testRuntime "org.junit.jupiter:junit-jupiter-engine:${project.junit5Version}"
78-
testCompile 'org.hamcrest:hamcrest:2.1'
79-
testCompile('org.spockframework:spock-core:1.3-groovy-2.5') {
80-
exclude group: 'org.codehaus.groovy'
81-
}
82-
testRuntime 'net.bytebuddy:byte-buddy:1.9.16'
83-
constraints {
84-
testRuntime 'net.bytebuddy:byte-buddy-agent:1.9.16'
85-
}
86-
testRuntime 'org.objenesis:objenesis:3.1'
87-
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
75+
// Gradle plugin needs to be compiled against the version of Groovy that is bundled with Gradle (currently 2.5.4)
76+
if (name != 'pact-jvm-provider-gradle') {
77+
dependencies {
78+
testCompile "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
79+
testRuntime "org.junit.jupiter:junit-jupiter-engine:${project.junit5Version}"
80+
testCompile 'org.hamcrest:hamcrest:2.1'
81+
testCompile('org.spockframework:spock-core:2.0-M2-groovy-3.0') {
82+
exclude group: 'org.codehaus.groovy'
83+
}
84+
testRuntime 'net.bytebuddy:byte-buddy:1.9.16'
85+
constraints {
86+
testRuntime 'net.bytebuddy:byte-buddy-agent:1.9.16'
87+
}
88+
testRuntime 'org.objenesis:objenesis:3.1'
89+
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
8890

89-
groovyDoc "org.codehaus.groovy:groovy-all:${project.groovyVersion}"
91+
groovyDoc "org.codehaus.groovy:groovy-all:${project.groovyVersion}"
92+
}
9093
}
9194

9295
compileTestGroovy {

‎consumer/pact-jvm-consumer-groovy/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dependencies {
33
compile "org.codehaus.groovy:groovy:${project.groovyVersion}"
44
compile "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
55

6-
testCompile "org.codehaus.groovy.modules.http-builder:http-builder:${project.httpBuilderVersion}",
6+
testCompile "io.github.http-builder-ng:http-builder-ng-apache:${project.httpBuilderVersion}",
77
"ch.qos.logback:logback-classic:${project.logbackVersion}"
88
testCompile "org.codehaus.groovy:groovy-xml:${project.groovyVersion}"
99
testCompile "org.codehaus.groovy:groovy-dateutil:${project.groovyVersion}"

0 commit comments

Comments
 (0)
Please sign in to comment.