Skip to content

Commit 4fd18b9

Browse files
committed
Use hibernate-processor instead of the obsolete hibernate-jpamodelgen
See https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.24#annotation-processor-artifact-relocation
1 parent 6a39bbe commit 4fd18b9

File tree

1 file changed

+2
-2
lines changed
  • hibernate-orm-jakarta-data-quickstart

1 file changed

+2
-2
lines changed

hibernate-orm-jakarta-data-quickstart/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@
7878
<configuration>
7979
<!-- the parameters=true option is critical so that RESTEasy works fine -->
8080
<parameters>true</parameters>
81-
<!-- the jpamodelgen annotation processor provides both static metamodel and Jakarta Data capabilities: -->
81+
<!-- the hibernate annotation processor provides both static metamodel and Jakarta Data capabilities: -->
8282
<annotationProcessorPaths>
8383
<path>
8484
<groupId>org.hibernate.orm</groupId>
85-
<artifactId>hibernate-jpamodelgen</artifactId>
85+
<artifactId>hibernate-processor</artifactId>
8686
</path>
8787
</annotationProcessorPaths>
8888
</configuration>

0 commit comments

Comments
 (0)