Open jmle opened 1 month ago
This issue is currently awaiting triage.
If contributors determine this is a relevant issue, they will accept it by applying the triage/accepted
label and provide further guidance.
The triage/accepted
label can be added by org members.
If using hibernate 5.6.x, the only change needed is to import
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core-jakarta</artifactId>
<version>5.6.15.Final</version> <!-- Make sure it's a 5.6.x version compatible with Jakarta -->
</dependency>
instead.
If using lower hibernate versions (Spring 5 is compatible with 5.0 upwards), a migration to 5.6 must be done first, in order to be able to use hibernate-core-jakarta
.
Another rule can be done to switch the namespaces, in case it is not covered by the jakarta namespace rules that we already have.
According to the migration guide:
Investigate and create rules if necessary.
In the rule description and message, try to be as verbose and clear as possible. Code examples are always welcome and useful. Feel free to use markdown syntax for these.