Skip to content

build(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to 3.16.0 - #6

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/org.apache.maven.plugins-maven-compiler-plugin-3.16.0
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/org.apache.maven.plugins-maven-compiler-plugin-3.16.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown

Bumps org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to 3.16.0.

Release notes

Sourced from org.apache.maven.plugins:maven-compiler-plugin's releases.

3.16.0

🚀 New features and improvements

🐛 Bug Fixes

📝 Documentation updates

👻 Maintenance

📦 Dependency updates

3.15.0

... (truncated)

Commits
  • e7bba6e [maven-release-plugin] prepare release maven-compiler-plugin-3.16.0
  • c906809 Avoid using deprecated method CompilerConfiguration.setCompilerVersion
  • ad74fee Replace adopt-openj9 by semeru JDK distribution on GH
  • beb0eda Recompile when dependencies change (#1102)
  • a0b689e [MCOMPILER-578] Track outputs across compiler executions (#1091)
  • 2e81228 Fix incremental detection of empty sources, 3.x (#1075)
  • 2132f5b configure ATR project
  • 5992b77 Build fails when annotation processor list is empty (but present) (#1077)
  • acccef7 Bump plexusCompilerVersion from 2.16.2 to 2.17.0
  • 72bc445 Bump org.codehaus.plexus:plexus-java from 1.5.2 to 1.6.0
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.12.1 to 3.16.0.
- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
- [Commits](apache/maven-compiler-plugin@maven-compiler-plugin-3.12.1...maven-compiler-plugin-3.16.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
  dependency-version: 3.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, java. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

chinaux added a commit that referenced this pull request Sep 14, 2026
Dependabot had five single-line plugin bumps open (#1 gpg 3.2.4 -> 3.2.8,
#2 jar 3.4.1 -> 3.5.1, #3 source 3.3.1 -> 3.4.0, #4 exec 3.2.0 -> 3.6.3,
#6 compiler 3.12.1 -> 3.16.0) and its PR limit of 5 was blocking anything
newer. Merging them one by one would have meant five commits and five CI
runs, and CI cannot run at all right now - the account is out of Actions
minutes for private repositories, so every check fails in seconds without
starting. Instead all five are applied here and verified locally, which is
a stricter gate than CI anyway: this machine builds on JDK 8, while every
CI job uses Temurin 11.

All five declare requiredJavaVersion 1.8 and requiredMavenVersion 3.6.3 in
their plugin descriptors, so they sit inside both floors. Checked with
Maven 3.9.10 / JDK 1.8.0_431: `clean package` and `checkstyle:check` are
green with 139 tests, and compiler-plugin 3.16.0 still honours
source/target 1.8 - the emitted classes are major version 52, not 55.
`-Prelease package -Dgpg.skip=true` produces the main, sources and javadoc
JARs, which is the bundle Central validates. For the release-natives
profile, `-Prelease-natives prepare-package` shows exec:3.6.3:exec spawning
package-platform-jars.sh and the script's own --require-all guard failing
the build on the three platforms whose natives are not staged locally, i.e.
the wiring is intact end to end.

One observable change: jar-plugin 3.5.1 pulls maven-archiver 3.6.6, which
adds a `Java-Version: 8` manifest entry next to the existing
Build-Jdk-Spec. It is derived from the bytecode target, so it states our
advertised floor rather than the build machine - harmless metadata, and
Automatic-Module-Name plus the Implementation-* entries are unchanged.
@chinaux

chinaux commented Sep 14, 2026

Copy link
Copy Markdown
Collaborator

Superseded by 149f54c, which applies this bump on main together with the four other queued plugin bumps.

3.16.0 still honours source/target 1.8: the emitted classes are major version 52, not 55, and mvn clean package plus checkstyle:check are green with 139 tests on JDK 8 - a stricter floor than the Temurin 11 CI jobs.

Verified locally on JDK 1.8.0_431 / Maven 3.9.10 rather than in CI: the account is out of Actions minutes for private repositories, so every check on this PR failed in seconds without starting. Closing instead of merging keeps one reviewed commit instead of five unvalidated ones.

@chinaux chinaux closed this Sep 14, 2026
@dependabot @github

dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@chinaux
chinaux deleted the dependabot/maven/org.apache.maven.plugins-maven-compiler-plugin-3.16.0 branch September 14, 2026 09:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant