| <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.3.1-SNAPSHOT</version> | |
| </parent> | |
| <modelVersion>4.0.0</modelVersion> | |
| <artifactId>parquet-thrift</artifactId> | |
| <packaging>jar</packaging> | |
| <name>Parquet Thrift</name> | |
| <url>https://github.com/Parquet/parquet-mr</url> | |
| <properties> | |
| <elephant-bird.version>4.3</elephant-bird.version> | |
| </properties> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.twitter</groupId> | |
| <artifactId>parquet-column</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.twitter</groupId> | |
| <artifactId>parquet-hadoop</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.hadoop</groupId> | |
| <artifactId>hadoop-client</artifactId> | |
| <version>${hadoop.version}</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.twitter.elephantbird</groupId> | |
| <artifactId>elephant-bird-core</artifactId> | |
| <version>${elephant-bird.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.twitter.elephantbird</groupId> | |
| <artifactId>elephant-bird-pig</artifactId> | |
| <version>${elephant-bird.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.codehaus.jackson</groupId> | |
| <artifactId>jackson-mapper-asl</artifactId> | |
| <version>${jackson.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.codehaus.jackson</groupId> | |
| <artifactId>jackson-core-asl</artifactId> | |
| <version>${jackson.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>log4j</groupId> | |
| <artifactId>log4j</artifactId> | |
| <version>${log4j.version}</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.twitter</groupId> | |
| <artifactId>parquet-column</artifactId> | |
| <version>${project.version}</version> | |
| <type>test-jar</type> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.twitter</groupId> | |
| <artifactId>parquet-pig</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.pig</groupId> | |
| <artifactId>pig</artifactId> | |
| <version>0.11.1</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>joda-time</groupId> | |
| <artifactId>joda-time</artifactId> | |
| <version>1.6</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-jar-plugin</artifactId> | |
| </plugin> | |
| <!-- thrift --> | |
| <plugin> | |
| <groupId>org.apache.thrift.tools</groupId> | |
| <artifactId>maven-thrift-plugin</artifactId> | |
| <version>0.1.10</version> | |
| <executions> | |
| <execution> | |
| <id>thrift-sources</id> | |
| <phase>generate-test-sources</phase> | |
| <goals> | |
| <goal>testCompile</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |