You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mb...@apache.org on 2018/08/14 04:00:08 UTC

asterixdb git commit: [NO ISSUE][*DB] Enable external library on Java 10

Repository: asterixdb
Updated Branches:
  refs/heads/release-0.9.4-pre-rc f06b48efd -> 993f0edb5


[NO ISSUE][*DB] Enable external library on Java 10

Change-Id: Ic3ba3c5597a1353ac4d1c3f690d6d32bfd978033
Reviewed-on: https://asterix-gerrit.ics.uci.edu/2776
Reviewed-by: Ian Maxon <im...@apache.org>
Tested-by: Ian Maxon <im...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/993f0edb
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/993f0edb
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/993f0edb

Branch: refs/heads/release-0.9.4-pre-rc
Commit: 993f0edb5080203ab0189469da97372b98d344e6
Parents: f06b48e
Author: Xikui Wang <xk...@gmail.com>
Authored: Tue Jul 17 11:47:30 2018 -0700
Committer: Ian Maxon <im...@apache.org>
Committed: Tue Jul 17 12:03:55 2018 -0700

----------------------------------------------------------------------
 asterixdb/asterix-external-data/pom.xml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/993f0edb/asterixdb/asterix-external-data/pom.xml
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-external-data/pom.xml b/asterixdb/asterix-external-data/pom.xml
index 964f7f9..1981c18 100644
--- a/asterixdb/asterix-external-data/pom.xml
+++ b/asterixdb/asterix-external-data/pom.xml
@@ -198,6 +198,17 @@
             </lifecycleMappingMetadata>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <configuration>
+            <usedDependencies combine.children="append">
+              <usedDependency>com.sun.xml.bind:jaxb-core</usedDependency>
+              <usedDependency>com.sun.xml.bind:jaxb-impl</usedDependency>
+              <usedDependency>com.sun.activation:javax.activation</usedDependency>
+            </usedDependencies>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -397,5 +408,17 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-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>
+    <dependency>
+      <groupId>com.sun.activation</groupId>
+      <artifactId>javax.activation</artifactId>
+    </dependency>
   </dependencies>
 </project>