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 16:09:05 UTC

[parquet-mr] branch parquet-1.12.x updated (ae70cd7 -> 261e320)

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

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


 discard ae70cd7  Revert "[maven-release-plugin] prepare release apache-parquet-1.12.1-rc0"
 discard b9e1921  [maven-release-plugin] prepare release apache-parquet-1.12.1-rc0
 discard f2f43a8  Remove unused dependency & Fix warning message
     new 261e320  Remove unused dependency & Fix warning message

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ae70cd7)
            \
             N -- N -- N   refs/heads/parquet-1.12.x (261e320)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

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

Posted by sh...@apache.org.
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 261e320329d719ef3c7f05ff2c3feb788d6ffd4f
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>