This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch pinot-hadoop-shaded in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit d8336525d3e42f21d9050dc48508b497c475ee96 Author: Xiang Fu <[email protected]> AuthorDate: Wed Oct 16 23:58:58 2019 -0700 Package parquet and orc record reader into shaded jar --- pinot-hadoop/pom.xml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pinot-hadoop/pom.xml b/pinot-hadoop/pom.xml index 87e2fab..69a094f 100644 --- a/pinot-hadoop/pom.xml +++ b/pinot-hadoop/pom.xml @@ -60,8 +60,8 @@ --> <relocations> <relocation> - <pattern>com.google.common.base.Preconditions</pattern> - <shadedPattern>shaded.com.google.common.base.Preconditions</shadedPattern> + <pattern>com.google.common.base</pattern> + <shadedPattern>shaded.com.google.common.base</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml.jackson</pattern> @@ -104,6 +104,16 @@ <classifier>shaded</classifier> </dependency> <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-parquet</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-orc</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <scope>provided</scope> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
