chore(build): bump Maven plugins and move GPG signing to release profile#17
Merged
chore(build): bump Maven plugins and move GPG signing to release profile#17
Conversation
- Bump maven-compiler-plugin 3.14.0 -> 3.15.0 - Bump maven-javadoc-plugin 3.11.2 -> 3.12.0 - Bump maven-jar-plugin 3.4.2 -> 3.5.0 - Bump maven-surefire-plugin 3.5.3 -> 3.5.5 - Bump jacoco-maven-plugin 0.8.13 -> 0.8.14 - Bump formatter-maven-plugin 2.26.0 -> 2.29.0 - Bump central-publishing-maven-plugin 0.7.0 -> 0.10.0 - Bump commons-logging 1.3.5 -> 1.3.6 - Move maven-gpg-plugin into a release profile (3.2.7 -> 3.2.8) and 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 maintenance PR to bump Maven build plugin versions and the
commons-loggingdependency, and to move GPG signing into a dedicatedreleaseprofile so regular builds don't require a signing key.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-plugin3.5.3 -> 3.5.5jacoco-maven-plugin0.8.13 -> 0.8.14formatter-maven-plugin2.26.0 -> 2.29.0central-publishing-maven-plugin0.7.0 -> 0.10.0commons-logging1.3.5 -> 1.3.6maven-gpg-pluginout of the default build and into a newreleaseprofile:<bestPractices>true</bestPractices>as recommended by the pluginmvn verifyno longer requires a GPG key; releases use-PreleaseTesting
mvn test(local) — unit tests pass against the upgraded pluginsBreaking Changes
-Preleaseto activate GPG signing. Any release automation that relied on GPG running unconditionally duringverifyneeds to be updated.Additional Notes
-Preleasebefore merging if we intend to cut a release off this branch.