You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2018/10/01 15:30:53 UTC

orc git commit: ORC-411: Update pom file to work with openjdk 10.

Repository: orc
Updated Branches:
  refs/heads/master 6ef073343 -> f6547e03c


ORC-411: Update pom file to work with openjdk 10.

Fixes #315

Signed-off-by: Owen O'Malley <om...@apache.org>


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

Branch: refs/heads/master
Commit: f6547e03c6e07affc7e2ce1ca148208edaafd8ba
Parents: 6ef0733
Author: Owen O'Malley <om...@apache.org>
Authored: Sat Sep 29 21:58:29 2018 -0700
Committer: Owen O'Malley <om...@apache.org>
Committed: Mon Oct 1 08:29:21 2018 -0700

----------------------------------------------------------------------
 java/bench/pom.xml |  4 ++++
 java/core/pom.xml  |  4 ++++
 java/pom.xml       | 11 ++++++++++-
 3 files changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/orc/blob/f6547e03/java/bench/pom.xml
----------------------------------------------------------------------
diff --git a/java/bench/pom.xml b/java/bench/pom.xml
index 13fa93c..2dbe44f 100644
--- a/java/bench/pom.xml
+++ b/java/bench/pom.xml
@@ -192,6 +192,10 @@
 	    <groupId>javax.servlet</groupId>
 	    <artifactId>servlet-api</artifactId>
 	  </exclusion>
+          <exclusion>
+            <groupId>jdk.tools</groupId>
+            <artifactId>jdk.tools</artifactId>
+          </exclusion>
 	  <exclusion>
 	    <groupId>org.mortbay.jetty</groupId>
 	    <artifactId>servlet-api</artifactId>

http://git-wip-us.apache.org/repos/asf/orc/blob/f6547e03/java/core/pom.xml
----------------------------------------------------------------------
diff --git a/java/core/pom.xml b/java/core/pom.xml
index dc3655c..9ebb63d 100644
--- a/java/core/pom.xml
+++ b/java/core/pom.xml
@@ -52,6 +52,10 @@
       <artifactId>aircompressor</artifactId>
     </dependency>
     <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-common</artifactId>
     </dependency>

http://git-wip-us.apache.org/repos/asf/orc/blob/f6547e03/java/pom.xml
----------------------------------------------------------------------
diff --git a/java/pom.xml b/java/pom.xml
index 16874e2..204bc79 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -148,7 +148,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.20.1</version>
+        <version>2.21.0</version>
         <configuration>
           <reuseForks>false</reuseForks>
           <argLine>-Xmx2048m</argLine>
@@ -436,6 +436,11 @@
         </exclusions>
       </dependency>
       <dependency>
+        <groupId>javax.xml.bind</groupId>
+        <artifactId>jaxb-api</artifactId>
+        <version>2.2.11</version>
+      </dependency>
+      <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-csv</artifactId>
         <version>1.4</version>
@@ -478,6 +483,10 @@
             <artifactId>jsp-api</artifactId>
           </exclusion>
           <exclusion>
+            <groupId>jdk.tools</groupId>
+            <artifactId>jdk.tools</artifactId>
+          </exclusion>
+          <exclusion>
             <groupId>net.java.dev.jets3t</groupId>
             <artifactId>jets3t</artifactId>
           </exclusion>