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 07c66d3 Fix warning message 'Used undeclared dependencies found'
07c66d3 is described below
commit 07c66d3f8ec9bfc57114dad387a00a30faae25c3
Author: Xinli shang <[email protected]>
AuthorDate: Fri Sep 10 22:04:44 2021 -0700
Fix warning message 'Used undeclared dependencies found'
---
parquet-cascading3-deprecated/pom.xml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/parquet-cascading3-deprecated/pom.xml
b/parquet-cascading3-deprecated/pom.xml
index e67f0fa..9160b7b 100644
--- a/parquet-cascading3-deprecated/pom.xml
+++ b/parquet-cascading3-deprecated/pom.xml
@@ -103,6 +103,30 @@
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>cascading</groupId>
+ <artifactId>cascading-core</artifactId>
+ <version>2.7.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-mapreduce-client-core</artifactId>
+ <version>2.10.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-common</artifactId>
+ <version>${hadoop.version}</version>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>