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 2a0f709 commit a042d5fCopy full SHA for a042d5f
instrumentation/jdbc/javaagent/build.gradle.kts
@@ -90,6 +90,7 @@ tasks {
90
test {
91
filter {
92
excludeTestsMatching("SlickTest")
93
+ excludeTestsMatching("PreparedStatementParametersTest")
94
}
95
jvmArgs("-Dotel.instrumentation.jdbc-datasource.enabled=true")
96
@@ -98,3 +99,10 @@ tasks {
98
99
dependsOn(testSlick, testStableSemconv, testSlickStableSemconv)
100
101
102
+
103
+tasks {
104
+ withType<Test>().configureEach {
105
+ systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
106
+ jvmArgs("-Dotel.instrumentation.jdbc.experimental.transaction.enabled=true")
107
+ }
108
+}
0 commit comments