You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maven-compiler-plugin 3.12.0 (latest currently is 3.12.1) learned a new trick: https://issues.apache.org/jira/browse/MCOMPILER-391
This means that e.g. hibernate-jpamodelgen annotation processor in a Quarkus project (that imports the Quarkus BOM) can be defined without an explicit version (and you don't need to align the version on each Quarkus update):
Before:
When I try to import/update such a project in Eclipse (2023-12), I'm getting a config error saying that the artifact was not found, with the version part of the coordinates being empty.
The text was updated successfully, but these errors were encountered:
famod
changed the title
Take the version for an annotation processor from project dependencyManagement just like `maven-compiler-plugin 3.12 does
Take the version for an annotation processor from project dependencyManagement just like maven-compiler-plugin 3.12+ does
Jan 9, 2024
maven-compiler-plugin
3.12.0 (latest currently is 3.12.1) learned a new trick: https://issues.apache.org/jira/browse/MCOMPILER-391This means that e.g.
hibernate-jpamodelgen
annotation processor in a Quarkus project (that imports the Quarkus BOM) can be defined without an explicit version (and you don't need to align the version on each Quarkus update):Before:
After:
When I try to import/update such a project in Eclipse (2023-12), I'm getting a config error saying that the artifact was not found, with the version part of the coordinates being empty.
This is how it's done in the compiler-plugin: https://github.com/apache/maven-compiler-plugin/pull/180/files#diff-d4bac42d8f4c68d397ddbaa05c1cbbed7984ef6dc0bb9ea60739df78997e99ee
The text was updated successfully, but these errors were encountered: