-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Description
It appears there are classified artifacts for Johnzon that are compatible with Jakarta EE 9. We will need to have a recipe to migrate to these artifacts. This will impact applications that are migrating to Spring Boot 3.0 and using JSON-P_1.1 (JSR-353) and JSON-B_1.0 (JSR-367).
Adding the jakarta classifier to johnzon artifacts:
<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-core</artifactId>
<version>${johnzon.version}</version>
<classifier>jakarta</classifier>
</dependency>
<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-mapper</artifactId>
<version>${johnzon.version}</version>
<classifier>jakarta</classifier>
</dependency>
<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-jsonb</artifactId>
<version>${johnzon.version}</version>
<classifier>jakarta</classifier>
</dependency>
Metadata
Metadata
Assignees
Labels
recipeRecipe requestedRecipe requested
Type
Projects
Status
Done