You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by xv...@apache.org on 2019/05/07 02:30:21 UTC

[incubator-druid] branch master updated: add javax.xml.bind dependencies removed in jdk11 (#7604)

This is an automated email from the ASF dual-hosted git repository.

xvrl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 751e1c9  add javax.xml.bind dependencies removed in jdk11 (#7604)
751e1c9 is described below

commit 751e1c9ba73b8e2a88358efcaec2d335e5ca99e8
Author: Xavier Léauté <xv...@apache.org>
AuthorDate: Mon May 6 19:30:14 2019 -0700

    add javax.xml.bind dependencies removed in jdk11 (#7604)
    
    We depend on javax.xml.bind at runtime. This change adds an explicit
    dependency on the J2EE module that was removed in Java 11.
---
 core/pom.xml | 4 ++++
 pom.xml      | 5 +++++
 2 files changed, 9 insertions(+)

diff --git a/core/pom.xml b/core/pom.xml
index deee460..ff30538 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -79,6 +79,10 @@
       <artifactId>javax.el-api</artifactId>
     </dependency>
     <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+    </dependency>
+    <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
     </dependency>
diff --git a/pom.xml b/pom.xml
index a0fff22..b65ab7a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -434,6 +434,11 @@
                 <version>3.0.0</version>
             </dependency>
             <dependency>
+                <groupId>javax.xml.bind</groupId>
+                <artifactId>jaxb-api</artifactId>
+                <version>2.3.0</version>
+            </dependency>
+            <dependency>
                 <groupId>org.glassfish</groupId>
                 <artifactId>javax.el</artifactId>
                 <version>3.0.0</version>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org