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


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to