File tree Expand file tree Collapse file tree 2 files changed +2
-20
lines changed
instrumentation/lettuce/lettuce-5.1 Expand file tree Collapse file tree 2 files changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,8 @@ dependencies {
2525
2626tasks {
2727 withType<Test >().configureEach {
28- val testLatestDeps = findProperty(" testLatestDeps" ) as Boolean
29- systemProperty(" testLatestDeps" , testLatestDeps)
28+ systemProperty(" testLatestDeps" , findProperty(" testLatestDeps" ) as Boolean )
3029 usesService(gradle.sharedServices.registrations[" testcontainersBuildService" ].service)
31-
32- dependencies {
33- if (testLatestDeps) {
34- // This is only needed for 6.7.0, can be removed when 6.7.1 is released.
35- // See https://github.com/redis/lettuce/issues/3317
36- testLibrary(" io.micrometer:micrometer-core:1.5.0" )
37- }
38- }
3930 }
4031
4132 val testStableSemconv by registering(Test ::class ) {
Original file line number Diff line number Diff line change @@ -14,17 +14,8 @@ dependencies {
1414
1515tasks {
1616 withType<Test >().configureEach {
17- val testLatestDeps = findProperty(" testLatestDeps" ) as Boolean
18- systemProperty(" testLatestDeps" , testLatestDeps)
17+ systemProperty(" testLatestDeps" , findProperty(" testLatestDeps" ) as Boolean )
1918 usesService(gradle.sharedServices.registrations[" testcontainersBuildService" ].service)
20-
21- dependencies {
22- if (testLatestDeps) {
23- // This is only needed for 6.7.0, can be removed when 6.7.1 is released.
24- // See https://github.com/redis/lettuce/issues/3317
25- testLibrary(" io.micrometer:micrometer-core:1.5.0" )
26- }
27- }
2819 }
2920
3021 val testStableSemconv by registering(Test ::class ) {
You can’t perform that action at this time.
0 commit comments