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 c12217e Fix warning 'Used undeclared dependencies found' for
org.codehaus.jackson
c12217e is described below
commit c12217e4ed297da29b3404c4379fb83ad4bcc7d3
Author: Xinli shang <[email protected]>
AuthorDate: Fri Sep 10 21:03:28 2021 -0700
Fix warning 'Used undeclared dependencies found' for org.codehaus.jackson
---
parquet-hadoop/pom.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/parquet-hadoop/pom.xml b/parquet-hadoop/pom.xml
index 88ce1c6..e9b7b27 100644
--- a/parquet-hadoop/pom.xml
+++ b/parquet-hadoop/pom.xml
@@ -159,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>