Make the Plexus doc link version-independent - #757
Merged
Conversation
The `@see` link named the `plexus-utils-4.0.0` tag while the constant already held `4.1.0`, so the reference went stale with the version bump. Point it at the releases page instead — it stays correct across bumps. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
armiol
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Plexus.versionwas bumped to4.1.0, but the@seelink next to it stillpointed at the
plexus-utils-4.0.0tag:The doc contradicted the constant it documented.
Fix
Point the link at the releases index rather than a version-specific tag. The
plexus-utils-4.1.0tag does exist, but naming a version in the link is exactlywhat let this rot in the first place — the releases page stays correct across
every future bump.
The label is trimmed to
Releases(matching the GitHub page title) so the KDocline lands at 91 characters, inside the 100-column limit from
.agents/guidelines/coding.md. The previous line was 124. The file carries apre-existing
@file:Suppress("MaxLineLength"), so detekt never flagged eitherversion — the limit is honoured here regardless.
Where this came from
Reported by Copilot on
core-jvm#1676.
buildSrc/src/main/kotlin/io/spine/dependency/**is config-distributed, socore-jvm only carries the overlay — the defect and its fix belong here.
Consumers pick it up on their next
./config/pull.Verification
./gradlew detekt— BUILD SUCCESSFUL.4.1.0tag each return HTTP 200.review-docs(APPROVE WITH CHANGES — the line-length item, nowapplied),
dependency-audit(APPROVE; confirmed no coordinate or versionchange rides along).
🤖 Generated with Claude Code