[Java] Fix package jaxb not exist when JDK11 (#3738)

This commit is contained in:
ggdupont
2019-01-16 07:15:00 +01:00
committed by Hao Chen
parent 3b39066c15
commit a237b4a6a1
2 changed files with 28 additions and 0 deletions
+12
View File
@@ -20,5 +20,17 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
</dependencies>
</project>