You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2020/08/10 22:53:17 UTC

[orc] branch master updated: ORC-657: Remove com.netflix.iceberg dependency in java/bench module (#533)

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

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new c3c4326  ORC-657: Remove com.netflix.iceberg dependency in java/bench module (#533)
c3c4326 is described below

commit c3c432627ecc5969fd7f93808c3999e7229848bb
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Mon Aug 10 15:53:07 2020 -0700

    ORC-657: Remove com.netflix.iceberg dependency in java/bench module (#533)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to remove `com.netflix.iceberg` dependency from `java/bench` module
    
    ### Why are the changes needed?
    
    This is unused and `iceberg` became Apache Iceberg already.
    
    ### How was this patch tested?
    
    Manually.
    ```
    $ cd java/bench
    $ mvn package
    ```
---
 java/bench/pom.xml | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/java/bench/pom.xml b/java/bench/pom.xml
index e90600c..170fb71 100644
--- a/java/bench/pom.xml
+++ b/java/bench/pom.xml
@@ -39,7 +39,6 @@
     <avro.version>1.8.2</avro.version>
     <hadoop.version>2.7.3</hadoop.version>
     <hive.version>2.3.3</hive.version>
-    <iceberg.version>0.1.3</iceberg.version>
     <jmh.version>1.20</jmh.version>
     <orc.version>${project.version}</orc.version>
     <parquet.version>1.8.3</parquet.version>
@@ -90,39 +89,6 @@
         </exclusions>
       </dependency>
       <dependency>
-        <groupId>com.netflix.iceberg</groupId>
-        <artifactId>iceberg-api</artifactId>
-        <version>${iceberg.version}</version>
-        <exclusions>
-          <exclusion>
-            <groupId>org.apache.orc</groupId>
-            <artifactId>orc-core</artifactId>
-          </exclusion>
-        </exclusions>
-      </dependency>
-      <dependency>
-        <groupId>com.netflix.iceberg</groupId>
-        <artifactId>iceberg-core</artifactId>
-        <version>${iceberg.version}</version>
-        <exclusions>
-          <exclusion>
-            <groupId>org.apache.orc</groupId>
-            <artifactId>orc-core</artifactId>
-          </exclusion>
-        </exclusions>
-      </dependency>
-      <dependency>
-        <groupId>com.netflix.iceberg</groupId>
-        <artifactId>iceberg-spark</artifactId>
-        <version>${iceberg.version}</version>
-        <exclusions>
-          <exclusion>
-            <groupId>org.apache.orc</groupId>
-            <artifactId>orc-core</artifactId>
-          </exclusion>
-        </exclusions>
-      </dependency>
-      <dependency>
         <groupId>io.netty</groupId>
         <artifactId>netty-all</artifactId>
         <version>4.1.42.Final</version>