[ https://issues.apache.org/jira/browse/MCOMPILER-391?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17802972#comment-17802972 ]
ASF GitHub Bot commented on MCOMPILER-391: ------------------------------------------ famod commented on PR #180: URL: https://github.com/apache/maven-compiler-plugin/pull/180#issuecomment-1876946809 @psiroky sure: > Are you relying on the new dependency management Yes, that's what I tried and this doesn't work (old groupId): ```xml <configuration> <annotationProcessorPaths> <path> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> </path> ``` but this does work (new, relocated groupId): ``` ``` <configuration> <annotationProcessorPaths> <path> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-jpamodelgen</artifactId> </path> ``` The Quarkus BOM I'm importing has this entry (new groupId only!): https://github.com/quarkusio/quarkus/blob/3.6.4/bom/application/pom.xml#L5012-L5014 > annotationProcessorPaths have to follow dependencyManagement rules > ------------------------------------------------------------------ > > Key: MCOMPILER-391 > URL: https://issues.apache.org/jira/browse/MCOMPILER-391 > Project: Maven Compiler Plugin > Issue Type: Bug > Affects Versions: 3.8.0 > Reporter: Stanislav Spiridonov > Assignee: Slawomir Jaranowski > Priority: Blocker > Fix For: 3.12.0 > > Attachments: MCOMPILER-391.zip > > > # Use the version from dependency management > # Respect the exclude (blocker for me) -- This message was sent by Atlassian Jira (v8.20.10#820010)