Skip to content

Commit 343bcd2

Browse files
authored
Lock the version of AWS S3 SDK in the build script. (testcontainers#1955)
see myniva/gradle-s3-build-cache#20
1 parent 94c903d commit 343bcd2

1 file changed

Lines changed: 13 additions & 7 deletions

File tree

settings.gradle

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
buildscript {
2-
repositories {
3-
maven {
4-
url "https://plugins.gradle.org/m2/"
2+
repositories {
3+
maven {
4+
url "https://plugins.gradle.org/m2/"
5+
}
6+
}
7+
dependencies {
8+
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.9.0"
9+
}
10+
11+
configurations.classpath {
12+
resolutionStrategy {
13+
force 'com.amazonaws:aws-java-sdk-s3:1.11.582'
14+
}
515
}
6-
}
7-
dependencies {
8-
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.9.0"
9-
}
1016
}
1117

1218
apply plugin: 'ch.myniva.s3-build-cache'

0 commit comments

Comments
 (0)