-
Due to the lack of the library source code, it is proposed to discuss approaches to migration:
Many history: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There is a <plugin>
<groupId>org.eclipse.transformer</groupId>
<artifactId>transformer-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<rules>
<jakartaDefaults>true</jakartaDefaults>
</rules>
</configuration>
<executions>
<execution>
<id>default-jar</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<artifact>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<classifier>jakarta</classifier>
</artifact>
</configuration>
</execution>
</executions>
</plugin> |
Beta Was this translation helpful? Give feedback.
-
The JATO source code is not available and even if it were, it would be way too outdated to attempt to fix. Decompiling will never yield a perfect result, and is very error prone. |
Beta Was this translation helpful? Give feedback.
The JATO source code is not available and even if it were, it would be way too outdated to attempt to fix. Decompiling will never yield a perfect result, and is very error prone.
You can also use the transformer-maven-plugin jar goal with jakartaDefaults=true:
https://github.com/eclipse-transformer/transformer/tree/main/maven-plugins/transformer-maven-plugin#jar-goal