You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by sh...@apache.org on 2021/09/11 06:06:47 UTC

[parquet-mr] 01/01: Remove unused dependency & Fix warning message

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

shangxinli pushed a commit to branch parquet-1.12.x
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git

commit f2f43a89de1712143198024df51354a75d8a2c2c
Author: Xinli shang <sh...@uber.com>
AuthorDate: Fri Sep 10 19:33:58 2021 -0700

    Remove unused dependency & Fix warning message
---
 parquet-cli/pom.xml    |  5 -----
 parquet-hadoop/pom.xml | 15 ++++++++++-----
 pom.xml                |  4 ----
 3 files changed, 10 insertions(+), 14 deletions(-)

diff --git a/parquet-cli/pom.xml b/parquet-cli/pom.xml
index fb416d6..4a3c0eb 100644
--- a/parquet-cli/pom.xml
+++ b/parquet-cli/pom.xml
@@ -101,11 +101,6 @@
       <version>${jackson.version}</version>
     </dependency>
     <dependency>
-      <groupId>${jackson.groupId}</groupId>
-      <artifactId>jackson-annotations</artifactId>
-      <version>${jackson.version}</version>
-    </dependency>
-    <dependency>
       <groupId>com.beust</groupId>
       <artifactId>jcommander</artifactId>
       <version>${jcommander.version}</version>
diff --git a/parquet-hadoop/pom.xml b/parquet-hadoop/pom.xml
index 8c14b73..e9b7b27 100644
--- a/parquet-hadoop/pom.xml
+++ b/parquet-hadoop/pom.xml
@@ -87,11 +87,6 @@
     </dependency>
     <dependency>
       <groupId>${jackson.groupId}</groupId>
-      <artifactId>jackson-core</artifactId>
-      <version>${jackson.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${jackson.groupId}</groupId>
       <artifactId>jackson-databind</artifactId>
       <version>${jackson-databind.version}</version>
     </dependency>
@@ -164,6 +159,16 @@
       <artifactId>audience-annotations</artifactId>
       <version>${yetus.audience-annotations.version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+      <version>1.9.13</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+      <version>1.9.13</version>
+    </dependency>
   </dependencies>
 
   <build>
diff --git a/pom.xml b/pom.xml
index f28f7d7..f0b6a5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,8 +123,6 @@
     <module>parquet-arrow</module>
     <module>parquet-avro</module>
     <module>parquet-benchmarks</module>
-    <module>parquet-cascading-deprecated</module>
-    <module>parquet-cascading3-deprecated</module>
     <module>parquet-cli</module>
     <module>parquet-column</module>
     <module>parquet-common</module>
@@ -137,10 +135,8 @@
     <module>parquet-pig-bundle</module>
     <module>parquet-protobuf</module>
     <module>parquet-scala</module>
-    <module>parquet-scrooge-deprecated</module>
     <module>parquet-thrift</module>
     <module>parquet-hadoop-bundle</module>
-    <module>parquet-tools-deprecated</module>
   </modules>
 
   <dependencies>