Skip to content

Commit e1ec567

Browse files
wip
1 parent 282ff2d commit e1ec567

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

server/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,12 @@ dependencies {
202202
// Needed for snapshot manifest validation
203203
integrationTestImplementation(group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${project.jacksonVersion}")
204204

205-
containerTestImplementation('com.adobe.testing:s3mock-testcontainers:2.17.0') // 3.x version do not support java 11
205+
containerTestImplementation('com.adobe.testing:s3mock-testcontainers:2.17.0') { // 3.x version do not support java 11
206+
// Exclude old testcontainers to force upgrade to 1.21.4 which supports Docker API 1.44+
207+
exclude group: 'org.testcontainers'
208+
}
209+
containerTestImplementation 'org.testcontainers:testcontainers:1.21.4'
210+
containerTestImplementation 'org.testcontainers:junit-jupiter:1.21.4'
206211
}
207212

208213
test {

0 commit comments

Comments
 (0)