Skip to content

Commit 88d7f4e

Browse files
committed
fix
1 parent 69efe20 commit 88d7f4e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ibm-mq-metrics/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ testing {
5050
targets {
5151
all {
5252
testTask.configure {
53-
shouldRunAfter(tasks.test)
53+
// Jakarta JMS requires Java 11+
54+
val testJavaVersion: String? by project
55+
if (testJavaVersion == "8") {
56+
enabled = false
57+
}
5458
}
5559
}
5660
}

0 commit comments

Comments
 (0)