Skip to content

Commit d57fcef

Browse files
author
Ronald Holshausen
committedApr 4, 2020
fix: correct test classpath after removing Amazon S3 #1063
1 parent 3b00d9e commit d57fcef

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
 

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

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ dependencies {
3030
}
3131
testRuntime "net.bytebuddy:byte-buddy:${project.bytebuddyVersion}"
3232
testRuntime 'org.objenesis:objenesis:3.1'
33+
testCompile 'com.fasterxml.jackson.core:jackson-databind:2.11.0.rc1'
3334

3435
testCompile 'org.clojure:clojure:1.10.0',
3536
'http-kit:http-kit:2.3.0'

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

+1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ dependencies {
2525
testCompile('org.spockframework:spock-core:2.0-M2-groovy-3.0') {
2626
exclude group: 'org.codehaus.groovy'
2727
}
28+
testCompile 'com.fasterxml.jackson.core:jackson-databind:2.11.0.rc1'
2829
}

‎core/model/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies {
3939
}
4040
testCompile "junit:junit:${project.junitVersion}"
4141
testCompile 'org.hamcrest:hamcrest:2.1'
42+
testCompile 'com.amazonaws:aws-java-sdk-s3:1.11.587'
4243
}
4344

4445
compileGroovy {

0 commit comments

Comments
 (0)
Please sign in to comment.