Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ spotless = "8.6.0"

# Testing
junit = "5.9.3"
junit-platform = "1.9.3" # JUnit Platform version corresponding to JUnit Jupiter 5.9.2
junit-pioneer = "1.9.1"
junit-platform = "1.9.3" # JUnit Platform version corresponding to JUnit Jupiter 5.9.3
junit-pioneer = "2.3.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep JUnit Pioneer on a Java 8-compatible line

This repo still targets Java 8 bytecode and documents/routs cross-JDK test runs through JAVA_TEST_HOME (ProfilerTestPlugin calls setExecutable(PlatformUtils.testJavaExecutable()), and the tests import @RetryingTest in many ddprof-test classes). JUnit Pioneer 2.x raised its runtime baseline to JDK 11, so when JAVA_TEST_HOME points to a JDK 8 runtime for the supported testDebug cross-JDK run, the test JVM will discover/load Java 11-only Pioneer classes and fail with UnsupportedClassVersionError before those tests can run. Please keep this dependency on the 1.x line unless the Java 8 test path is intentionally dropped.

Useful? React with 👍 / 👎.

slf4j = "2.0.18"

# Profiler runtime
Expand Down
Loading