1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Subject: add jaxb-api jar for openjdk 11
Description: xml.bind has been removed from openjdk 11,
add jaxb-api jar file to compilation and classpath
Author: Olivier Sallou <osallou@debian.org>
Last-Updated: 2018-11-12
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -21,6 +21,7 @@
implementation 'org.openjdk.nashorn:nashorn-core:15.4'
api "gov.nih.nlm.ncbi:ngs-java:2.9.0"
+ api "javax.xml.bind:jaxb-api:debian"
api "org.apache.commons:commons-jexl:2.1.1"
testImplementation 'org.testng:testng:7.8.0'
|