Skip to content

Commit

Permalink
add jaxb-API specific dependencies for jdk11+ (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Coutadeur committed Jan 9, 2025
1 parent 3a47c0d commit 6e95498
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,27 @@
<version>${graalvm.version}</version>
<scope>runtime</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.25.0-GA</version>
</dependency>
</dependencies>
</profile>

Expand Down

0 comments on commit 6e95498

Please sign in to comment.