Fix duplicate exec-maven-plugin.version from a bad merge#496
Merged
ramanathan1504 merged 1 commit intoJul 23, 2026
Merged
Conversation
Commit 873899e ("Add options to enable Develocity") accidentally re-added an `exec-maven-plugin.version` declaration next to the existing one, most likely due to a badly resolved merge or rebase. Since then Dependabot has been bumping both declarations independently. Maven uses the last declaration, so dropping the first one does not change the effective version (`3.6.3`). This was the only duplicate property in the POM. Assisted-By: Claude Fable 5 <noreply@anthropic.com>
ramanathan1504
approved these changes
Jul 23, 2026
ramanathan1504
left a comment
There was a problem hiding this comment.
Fixes a Maven Enforcer upper-bound dependency conflict in log4j-api-test. The maven-core:3.9.16 dependency brings in guava:33.6.0-jre, which conflicts with our managed version. Bumping the managed Guava version to 33.6.0-jre resolves the upperBoundDeps failure.
ramanathan1504
deleted the
chore/remove-duplicate-exec-maven-plugin-version
branch
July 23, 2026 15:16
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.
Commit 873899e ("Add options to enable Develocity") accidentally re-added an
exec-maven-plugin.versiondeclaration next to the existing one, most likely due to a badly resolved merge or rebase. Since then Dependabot has been bumping both declarations independently (they currently read3.4.1and3.6.3).