File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
instrumentation/jboss-logmanager
jboss-logmanager-appender-1.1/javaagent
jboss-logmanager-mdc-1.1/javaagent Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,14 @@ dependencies {
22
22
testImplementation(" org.awaitility:awaitility" )
23
23
}
24
24
25
+ val latestDepTest = findProperty(" testLatestDeps" ) as Boolean
26
+
27
+ if (latestDepTest) {
28
+ otelJava {
29
+ minJavaVersionSupported.set(JavaVersion .VERSION_11 )
30
+ }
31
+ }
32
+
25
33
tasks.withType<Test >().configureEach {
26
34
// TODO run tests both with and without experimental log attributes
27
35
jvmArgs(" -Dotel.instrumentation.jboss-logmanager.experimental.capture-mdc-attributes=*" )
Original file line number Diff line number Diff line change @@ -14,3 +14,11 @@ muzzle {
14
14
dependencies {
15
15
library(" org.jboss.logmanager:jboss-logmanager:1.1.0.GA" )
16
16
}
17
+
18
+ val latestDepTest = findProperty(" testLatestDeps" ) as Boolean
19
+
20
+ if (latestDepTest) {
21
+ otelJava {
22
+ minJavaVersionSupported.set(JavaVersion .VERSION_11 )
23
+ }
24
+ }
You can’t perform that action at this time.
0 commit comments