Update Java Maven dependencies and plugins to latest compatible versions - #272
Merged
Conversation
- junit-jupiter 5.10.2 -> 5.14.4 (JUnit 6 requires JDK 17+; CI tests on Java 11) - maven-compiler-plugin 3.12.1 -> 3.15.0 - maven-surefire-plugin 3.2.5 -> 3.5.6 - maven-jar-plugin 3.3.0 -> 3.5.1 - maven-source-plugin 3.3.0 -> 3.4.0 - maven-javadoc-plugin 3.6.3 -> 3.12.0 - spotless-maven-plugin 2.43.0 -> 2.46.1 (3.x requires JDK 17+) - maven-gpg-plugin 3.1.0 -> 3.2.8 - nexus-staging-maven-plugin 1.6.13 -> 1.7.0 google-java-format stays at 1.19.2: newer releases require JDK 17/21 while the CI format job runs on JDK 11. Verified: mvn test (117 tests pass) and spotless:check pass locally. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Follow-up to #271 covering the Java implementation (missed in the first pass;
go/go.modhas no external dependencies, so Go needs nothing).All versions are the latest that remain compatible with the Java 11 baseline (CI tests on 11/17/21 and runs the format job on 11):
Intentionally held back (all require JDK 17+ at runtime, incompatible with the Java 11 CI jobs): JUnit 6.x, Spotless 3.x, google-java-format >1.19.2.
Verified locally:
mvn test— 117 tests pass;spotless:check— BUILD SUCCESS (JDK 17).🤖 Generated with Claude Code