Skip to content
Merged
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
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spotless = "8.5.1"

# Testing
junit = "6.1.0"
junit-platform = "1.14.3" # JUnit Platform version corresponding to JUnit Jupiter 5.9.2
junit-platform = "6.1.0" # JUnit Platform version corresponding to JUnit Jupiter 5.9.2
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 Use Java-8-compatible junit-platform-launcher version

Setting junit-platform = "6.1.0" upgrades org.junit.platform:junit-platform-launcher in libs.bundles.testing, but this project still runs tests on Java 8/11 in CI (see .github/workflows/test_workflow.yml matrices including "8"/"11" and "8-librca"/"11-librca"). The musl path executes ProfilerTestRunner via createExecTestTask() with the test classpath, so loading JUnit Platform 6 (Java 17+ baseline) on those runtimes will fail before test execution (class-version/runtime incompatibility).

Useful? React with 👍 / 👎.

junit-pioneer = "1.9.1"
slf4j = "2.0.18"

Expand Down
Loading