We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bc962c commit 2fa85f1Copy full SHA for 2fa85f1
instrumentation/rediscala-1.8/javaagent/build.gradle.kts
@@ -48,10 +48,21 @@ muzzle {
48
49
dependencies {
50
library("com.github.etaty:rediscala_2.11:1.8.0")
51
+
52
+ latestDepTestLibrary("com.github.etaty:rediscala_2.13:+")
53
}
54
55
tasks {
56
test {
57
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
58
59
60
61
+if (findProperty("testLatestDeps") as Boolean) {
62
+ configurations {
63
+ // rediscala_ artifact name is different for regular and latest tests
64
+ testImplementation {
65
+ exclude("com.github.etaty", "rediscala_2.11")
66
+ }
67
68
+}
0 commit comments