This is an automated email from the ASF dual-hosted git repository.
gabor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/master by this push:
new dcfd53a PARQUET-1529: Shade fastutil in all modules where used (#617)
dcfd53a is described below
commit dcfd53ae1e6c3cc47eec319f2a3394e4fd1ce403
Author: Gabor Szadovszky <[email protected]>
AuthorDate: Wed Feb 13 16:59:37 2019 +0100
PARQUET-1529: Shade fastutil in all modules where used (#617)
---
parquet-avro/pom.xml | 4 ++++
parquet-column/pom.xml | 22 ----------------------
parquet-hadoop/pom.xml | 4 ++++
3 files changed, 8 insertions(+), 22 deletions(-)
diff --git a/parquet-avro/pom.xml b/parquet-avro/pom.xml
index 953bfe4..1649803 100644
--- a/parquet-avro/pom.xml
+++ b/parquet-avro/pom.xml
@@ -161,6 +161,10 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ </plugin>
</plugins>
</build>
diff --git a/parquet-column/pom.xml b/parquet-column/pom.xml
index cfdc555..8bfba02 100644
--- a/parquet-column/pom.xml
+++ b/parquet-column/pom.xml
@@ -109,28 +109,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <minimizeJar>true</minimizeJar>
- <artifactSet>
- <includes>
- <include>it.unimi.dsi:fastutil</include>
- </includes>
- </artifactSet>
- <relocations>
- <relocation>
- <pattern>it.unimi.dsi</pattern>
-
<shadedPattern>org.apache.parquet.it.unimi.dsi</shadedPattern>
- </relocation>
- </relocations>
- </configuration>
- </execution>
- </executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
diff --git a/parquet-hadoop/pom.xml b/parquet-hadoop/pom.xml
index 32c162c..bca4992 100644
--- a/parquet-hadoop/pom.xml
+++ b/parquet-hadoop/pom.xml
@@ -121,6 +121,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ </plugin>
</plugins>
</build>