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 pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>6.0.3</version>
<version>6.1.0</version>
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 artifacts on one aligned version

Updating only junit-platform-launcher to 6.1.0 while org.junit:junit-bom remains at 6.0.3 introduces mixed JUnit runtime versions (for example, integration-test pulls junit-jupiter-engine from the BOM but junit-platform-launcher from this override). JUnit 6 artifacts are expected to be version-aligned, and this mismatch can surface as runtime incompatibilities during test discovery/execution (e.g., linkage errors) in modules that use both launcher and Jupiter engine.

Useful? React with 👍 / 👎.

</dependency>

</dependencies>
Expand Down
Loading