-
Notifications
You must be signed in to change notification settings - Fork 404
Open
Description
JakartaEE 9.x is available which uses a new package jakarta instead of javax. Therefore the currently available jars are not compatible with runtimes based on JakartaEE 9.x.
A possible solution would be the usage of the eclipse transformer plugin, which produces an additional jar file with updated imports, etc.
<plugin>
<groupId>org.eclipse.transformer</groupId>
<artifactId>org.eclipse.transformer.maven</artifactId>
<version>0.2.0</version>
<executions>
<execution>
<id>jakarta-ee</id>
<goals>
<goal>run</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>jakarta</classifier>
</configuration>
</execution>
</executions>
</plugin>
henryju, rudolphi, bramhaag, lounagen, markkolich and 10 more
Metadata
Metadata
Assignees
Labels
No labels