chore(deps): bump build plugins and dependencies, move gpg signing to release profile - #74
Merged
Merged
Conversation
… release profile - Bump Maven plugins: compiler 3.15.0, javadoc 3.12.0, jar 3.5.0, surefire 3.5.5, jacoco 0.8.14, formatter 2.29.0, central-publishing 0.10.0 - Bump dependencies: bcprov-jdk18on 1.84, JUnit 5.14.3 / platform 1.14.3, Mockito 5.23.0, Testcontainers 1.21.4 - Move maven-gpg-plugin (3.2.8) into a `release` profile so non-release builds no longer require GPG signing; enable bestPractices
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.
Summary
Routine refresh of Maven build plugins and test/runtime dependencies, plus a build-config tweak to scope GPG signing to release builds only.
Changes Made
maven-compiler-plugin3.14.0 → 3.15.0maven-javadoc-plugin3.11.2 → 3.12.0maven-jar-plugin3.4.2 → 3.5.0maven-surefire-plugin(andsurefire-junit-platform) 3.5.0 → 3.5.5jacoco-maven-plugin0.8.13 → 0.8.14formatter-maven-plugin2.26.0 → 2.29.0central-publishing-maven-plugin0.7.0 → 0.10.0bcprov-jdk18on1.80 → 1.84maven-gpg-plugin(bumped to 3.2.8) out of the always-on<build>block and into a newreleaseprofile, with<bestPractices>true</bestPractices>enabled. Non-release builds no longer require a GPG signing key.Testing
mvn clean testlocally to confirm the new Surefire / JUnit / Mockito stack runs the existing test suite.-Preleaseto pick up the GPG signing step now that it lives in the profile.Breaking Changes
mvn verifyormvn packageexpecting artifacts to be GPG-signed, signing now requires-Prelease. CI/release jobs that publish to Central must activate thereleaseprofile.Additional Notes