Skip to content

Commit

Permalink
Update pom dependencies from javax to jakarta for jakarta.xml.bind
Browse files Browse the repository at this point in the history
  • Loading branch information
jeortizquan committed Aug 29, 2024
1 parent b5db6d2 commit ef2219d
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<version.java>21</version.java>
<version.springdoc-openapi-starter-webmvc-ui>2.3.0</version.springdoc-openapi-starter-webmvc-ui>
<version.metis>13-SNAPSHOT</version.metis>
<version.metis.normalization>13</version.metis.normalization>
<version.metis.normalization>14-SNAPSHOT</version.metis.normalization>
<version.spring.boot>3.2.3</version.spring.boot>
<version.europeana>2.16.7</version.europeana>
<version.postgresql>42.7.2</version.postgresql>
Expand Down Expand Up @@ -61,6 +61,7 @@
<version.postgresql.bucket4j>8.1.1</version.postgresql.bucket4j>
<version.guava>32.1.3-jre</version.guava>
<version.mockito-core>5.8.0</version.mockito-core>
<version.xml.bind>4.0.2</version.xml.bind>
</properties>
<dependencies>
<!-- Rate limiting dependencies-->
Expand Down Expand Up @@ -160,6 +161,10 @@
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
</exclusion>
<exclusion>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down Expand Up @@ -296,6 +301,14 @@
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
</exclusion>
<exclusion>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down Expand Up @@ -337,6 +350,10 @@
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</exclusion>
<exclusion>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -482,6 +499,14 @@
<artifactId>apm-agent-attach</artifactId>
<version>${version.elastic.apm}</version>
</dependency>

<!-- jakarta xml -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${version.xml.bind}</version>
</dependency>

</dependencies>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit ef2219d

Please sign in to comment.