Skip to content

Commit

Permalink
chore(deps): upgrades JAXB dependencies for feign-jaxb on Java17 (#1700)
Browse files Browse the repository at this point in the history
* feat: upgrade JAXB dependencies for feign-jaxb

* feat: upgrade JAXB dependencies for feign-jaxb for Java17
  • Loading branch information
smlgbl committed Jul 21, 2022
1 parent 85ee3f1 commit 53c7ab6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions jaxb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,30 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>java17</id>
<activation>
<jdk>[17,]</jdk>
</activation>

<!--
JAXB was removed from java SDK on JEP 320
http://openjdk.java.net/jeps/320
-->
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-core</artifactId>
<version>4.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
</profiles>

</project>

0 comments on commit 53c7ab6

Please sign in to comment.