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 7e1c0d4 commit b60f6d7Copy full SHA for b60f6d7
instrumentation/finatra-2.9/javaagent/build.gradle.kts
@@ -89,3 +89,16 @@ tasks {
89
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
90
}
91
92
+
93
+if (findProperty("testLatestDeps") as Boolean) {
94
+ configurations.named("latestDepTestRuntimeClasspath") {
95
+ resolutionStrategy {
96
+ eachDependency {
97
+ // finatra 24.2.0 doesn't work with jackson 2.20.0
98
+ if (requested.group.startsWith("com.fasterxml.jackson")) {
99
+ useVersion("2.19.2")
100
+ }
101
102
103
104
+}
0 commit comments