Conversation
Bumps [com.gradleup.shadow](https://github.com/GradleUp/shadow) from 9.3.0 to 9.3.1. - [Release notes](https://github.com/GradleUp/shadow/releases) - [Commits](GradleUp/shadow@9.3.0...9.3.1) --- updated-dependencies: - dependency-name: com.gradleup.shadow dependency-version: 9.3.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](junit-team/junit-framework@r6.0.1...r6.0.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
📝 WalkthroughWalkthroughTwo dependency versions are bumped in the build configuration: Gradle Shadow plugin from 9.3.0 to 9.3.1 and JUnit BOM platform from 6.0.1 to 6.0.2. No functional or logic changes are introduced. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In @build.gradle:
- Line 26: The build uses an unavailable JUnit BOM version string
"testImplementation platform('org.junit:junit-bom:6.0.2')"; update that
dependency declaration to a published version (for example replace 6.0.2 with
6.0.1 or 6.1.0-M1) so the testImplementation platform('org.junit:junit-bom:...')
line references a real artifact and the build no longer fails due to a missing
BOM.
📜 Review details
Configuration used: defaults
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
build.gradle
🔇 Additional comments (1)
build.gradle (1)
3-3: Version 9.3.1 of the Shadow plugin is confirmed and secure.Version 9.3.1 exists and has no known security vulnerabilities. The patch includes a fix for ASM classpath conflicts (uses ASM from jdependency embedded). The plugin requires Gradle 9.0+ and Java 17+.
| implementation 'io.github.TogAr2:MinestomFluids' | ||
|
|
||
| testImplementation platform('org.junit:junit-bom:6.0.1') | ||
| testImplementation platform('org.junit:junit-bom:6.0.2') |
There was a problem hiding this comment.
🧩 Analysis chain
🌐 Web query:
JUnit BOM 6.0.2 Maven Central release
💡 Result:
JUnit 6.0.2 was announced with a release date of January 6, 2026. [1]
However, the Maven Central org.junit:junit-bom directory does not list a 6.0.2 artifact (latest listed there is 6.0.1 / 6.1.0‑M1). So as of now the BOM 6.0.2 is not present on Maven Central. [2]
Sources:
- JUnit 6.0.2 release notes (Jan 6, 2026). [1]
- Maven Central (repo1.maven.org) org/junit/junit-bom listing (no 6.0.2). [2]
🌐 Web query:
JUnit junit-bom 6.0.2 security vulnerabilities advisories
💡 Result:
Short answer: There are no public security advisories specifically affecting junit-bom 6.0.2. JUnit 6.0.2 (released Jan 6, 2026) lists bug fixes/enhancements but no security advisories; the most relevant recent JUnit security advisory is GHSA-m43g-m425-p68x (credential leakage in OpenTestReportGeneratingListener), tracked as CVE-2025-53103 and fixed in 5.13.2. [1][2][3]
Sources:
- JUnit 6.0.2 release notes (Jan 6, 2026). [1]
- JUnit GitHub security advisory GHSA-m43g-m425-p68x. [2]
- NVD entry for CVE-2025-53103 (OpenTestReportGeneratingListener credential leak). [3]
Use available JUnit BOM version—6.0.2 does not exist on Maven Central.
JUnit 6.0.2 was announced on January 6, 2026, but the artifact is not yet deployed to Maven Central. The latest available versions are 6.0.1 and 6.1.0-M1. Update to one of these versions to avoid build failures.
🤖 Prompt for AI Agents
In @build.gradle at line 26, The build uses an unavailable JUnit BOM version
string "testImplementation platform('org.junit:junit-bom:6.0.2')"; update that
dependency declaration to a published version (for example replace 6.0.2 with
6.0.1 or 6.1.0-M1) so the testImplementation platform('org.junit:junit-bom:...')
line references a real artifact and the build no longer fails due to a missing
BOM.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.