How to update the miredot configuration when transitioning your application from Java EE to Jakarta EE.
After you migrated your application from Java EE to Jakarta EE, miredot will no longer find any interfaces. To solve this
you will need to update your configuration to use Jakarta EE. This is done by setting the restFramework
configuration
parameter to jakarta
.
An example configuration for Maven and Gradle can be found below:
<configuration>
<restModel>
<restFramework>
<name>jakarta</name>
</restFramework>
</restModel>
</configuration>
restModel {
restFramework{
name = 'jakarta'
}
}