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/13 15:45:04 UTC

[parquet-mr] branch parquet-1.12.x updated: Revert "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


The following commit(s) were added to refs/heads/parquet-1.12.x by this push:
     new afd4904  Revert "Remove unused dependency & Fix warning message"
afd4904 is described below

commit afd490456881cac870be80bcdd2bcaca6ae338f7
Author: Xinli shang <sh...@uber.com>
AuthorDate: Mon Sep 13 08:44:47 2021 -0700

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

diff --git a/parquet-cli/pom.xml b/parquet-cli/pom.xml
index 4a3c0eb..fb416d6 100644
--- a/parquet-cli/pom.xml
+++ b/parquet-cli/pom.xml
@@ -101,6 +101,11 @@
       <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 e9b7b27..8c14b73 100644
--- a/parquet-hadoop/pom.xml
+++ b/parquet-hadoop/pom.xml
@@ -87,6 +87,11 @@
     </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>
@@ -159,16 +164,6 @@
       <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 f0b6a5f..f28f7d7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,6 +123,8 @@
     <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>
@@ -135,8 +137,10 @@
     <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>