Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KREST-11812 Replace EOL javaee/jaxb-api with jarkartaee/jaxb-api #440

Merged
merged 1 commit into from Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions core/pom.xml
Expand Up @@ -27,10 +27,9 @@
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<!-- Jersey dependency that was available in the JDK before Java 9 -->
msn-tldr marked this conversation as resolved.
Show resolved Hide resolved
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<!-- Jersey dependency that was available in the JDK before Java 9 -->
<dependency>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Expand Up @@ -87,6 +87,12 @@
<artifactId>jersey-container-servlet</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<!-- 2.3.3 is the closest major version to the EoL javaee/jaxb-api 2.3.0 -->
<version>2.3.3</version>
</dependency>
<!-- Jersey dependency that was available in the JDK before Java 9 -->
<dependency>
<groupId>javax.activation</groupId>
Expand Down