Skip to content

Provide Jakarta compatible build #349

@fanste

Description

@fanste

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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions