blob: 6b5e9fbf643cd8e5f1f73db05daedcd94ed36148 [file] [log] [blame]
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.twitter</groupId>
<artifactId>parquet</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>parquet-pig-bundle</artifactId>
<packaging>jar</packaging>
<name>Parquet Pig bundle</name>
<url>https://github.com/Parquet/parquet-mr</url>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>parquet-pig</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
<artifactSet>
<includes>
<include>com.twitter:parquet-*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>