Skip to content

Commit 2fa85f1

Browse files
authored
Test latest version of rediscala (#5951)
* Test latest version of rediscala * spotless
1 parent 2bc962c commit 2fa85f1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

instrumentation/rediscala-1.8/javaagent/build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,21 @@ muzzle {
4848

4949
dependencies {
5050
library("com.github.etaty:rediscala_2.11:1.8.0")
51+
52+
latestDepTestLibrary("com.github.etaty:rediscala_2.13:+")
5153
}
5254

5355
tasks {
5456
test {
5557
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].getService())
5658
}
5759
}
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

Comments
 (0)