Fix for issue #954 : Add external Dependencies to run with Java11 (#957)

* Fix for issue #954
Add javax.annotation and java.xml.bind as external maven dependencies
Verified with jdk-11

* Move dependency versions to main pom.xml's dependencyManagement section
This commit is contained in:
Arpit Jain
2019-10-06 21:36:39 +05:30
committed by Ilkka Seppälä
parent 60171e3c87
commit 94ca254626
2 changed files with 20 additions and 0 deletions

View File

@ -63,5 +63,13 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>
</project>