File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
instrumentation/aws-sdk/aws-sdk-1.11/library Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ dependencies {
2323 latestDepTestLibrary(" com.amazonaws:aws-java-sdk-sqs:1.12.583" ) // documented limitation
2424}
2525
26- if (! (findProperty(" testLatestDeps" ) as Boolean )) {
26+ val testLatestDeps = findProperty(" testLatestDeps" ) as Boolean
27+ if (! testLatestDeps) {
2728 configurations.testRuntimeClasspath {
2829 resolutionStrategy {
2930 eachDependency {
@@ -42,7 +43,8 @@ testing {
4243 dependencies {
4344 implementation(project())
4445 implementation(project(" :instrumentation:aws-sdk:aws-sdk-1.11:testing" ))
45- implementation(" com.amazonaws:aws-java-sdk-secretsmanager:1.12.80" )
46+ version = if (testLatestDeps) " latest.release" else " 1.12.80"
47+ implementation(" com.amazonaws:aws-java-sdk-secretsmanager:$version " )
4648 }
4749 }
4850 }
You can’t perform that action at this time.
0 commit comments