Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 57 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,56 @@
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>14</version>
</parent>

<groupId>com.twitter</groupId>
<artifactId>parquet-format</artifactId>
<version>2.1.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>parquet format metadata</name>
<url>http://github.com/Parquet/parquet-format</url>
<name>Apache Parquet Format (Incubating)</name>
<url>http://parquet.incubator.apache.org/</url>
<description>Parquet is a columnar storage format that supports nested data. This provides all generated metadata code.</description>

<scm>
<connection>scm:git:[email protected]:Parquet/parquet-format.git</connection>
<url>scm:git:[email protected]:Parquet/parquet-format.git</url>
<developerConnection>scm:git:git@github.com:Parquet/parquet-format.git</developerConnection>
<connection>scm:git:[email protected]:apache/incubator-parquet-format.git</connection>
<url>scm:git:[email protected]:apache/incubator-parquet-format.git</url>
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-parquet-format.git</developerConnection>
</scm>

<licenses>
<!-- This is also in the Apache parent POM, but adding it here includes it
in dependency-reduced-pom.xml so that it passes the rat check. -->
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<issueManagement>
<system>JIRA</system>
<url>https://issues.apache.org/jira/browse/PARQUET</url>
</issueManagement>

<mailingLists>
<mailingList>
<name>Dev Mailing List</name>
<post>[email protected]</post>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
</mailingList>
<mailingList>
<name>Commits Mailing List</name>
<post>[email protected]</post>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
</mailingList>
</mailingLists>

<developers>
<developer>
<name>Julien Le Dem</name>
Expand Down Expand Up @@ -91,11 +119,24 @@
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<rat.version>0.10</rat.version>
</properties>

<build>
<resources>
<resource>
<!-- the default resources directory -->
<directory>src/main/resources</directory>
</resource>
<resource>
<!-- copy NOTICE and LICENSE -->
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>NOTICE</include>
<include>LICENSE</include>
</includes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -129,6 +170,15 @@
</execution>
</executions>
</plugin>
<plugin>
<!-- Override source and target from the ASF parent -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down Expand Up @@ -172,7 +222,6 @@
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>${rat.version}</version>
<executions>
<execution>
<phase>test</phase>
Expand Down