Skip to content

Commit f1d3601

Browse files
committed
PARQUET-111: Update to use Apache parent POM.
This does not update the groupId to org.apache.parquet. The first Apache release will use the com.twitter groupId and will be followed by a org.apache release.
1 parent a635f21 commit f1d3601

1 file changed

Lines changed: 29 additions & 12 deletions

File tree

pom.xml

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
<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/maven-v4_0_0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33

4+
<parent>
5+
<groupId>org.apache</groupId>
6+
<artifactId>apache</artifactId>
7+
<version>14</version>
8+
</parent>
9+
410
<groupId>com.twitter</groupId>
511
<artifactId>parquet</artifactId>
612
<version>1.6.0rc3-SNAPSHOT</version>
713
<packaging>pom</packaging>
814

9-
<name>Parquet MR</name>
10-
<url>https://github.com/Parquet/parquet-mr</url>
15+
<name>Apache Parquet MR (Incubating)</name>
16+
<url>http://parquet.incubator.apache.org/</url>
1117
<description>Parquet is a columnar storage format that supports nested data. This provides the java implementation.</description>
1218

1319
<scm>
14-
<connection>scm:git:git@github.com:Parquet/parquet-mr.git</connection>
15-
<url>scm:git:git@github.com:Parquet/parquet-mr.git</url>
16-
<developerConnection>scm:git:git@github.com:Parquet/parquet-mr.git</developerConnection>
20+
<connection>scm:git:git@github.com:apache/incubator-parquet-mr.git</connection>
21+
<url>scm:git:git@github.com:apache/incubator-parquet-mr.git</url>
22+
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-parquet-format.git</developerConnection>
1723
</scm>
1824

1925
<licenses>
@@ -23,11 +29,23 @@
2329
</license>
2430
</licenses>
2531

32+
<issueManagement>
33+
<system>JIRA</system>
34+
<url>https://issues.apache.org/jira/browse/PARQUET</url>
35+
</issueManagement>
36+
2637
<mailingLists>
2738
<mailingList>
28-
<name>Dev List</name>
29-
<post>parquet-dev@googlegroups.com</post>
30-
<archive>https://groups.google.com/d/forum/parquet-dev</archive>
39+
<name>Dev Mailing List</name>
40+
<post>dev@parquet.incubator.apache.org</post>
41+
<subscribe>dev-subscribe@parquet.incubator.apache.org</subscribe>
42+
<unsubscribe>dev-unsubscribe@parquet.incubator.apache.org</unsubscribe>
43+
</mailingList>
44+
<mailingList>
45+
<name>Commits Mailing List</name>
46+
<post>commits@parquet.incubator.apache.org</post>
47+
<subscribe>commits-subscribe@parquet.incubator.apache.org</subscribe>
48+
<unsubscribe>commits-unsubscribe@parquet.incubator.apache.org</unsubscribe>
3149
</mailingList>
3250
</mailingLists>
3351

@@ -314,14 +332,13 @@
314332
</executions-->
315333
</plugin>
316334
<plugin>
335+
<!-- Override source and target from the ASF parent -->
317336
<groupId>org.apache.maven.plugins</groupId>
318337
<artifactId>maven-compiler-plugin</artifactId>
319-
<version>2.0.2</version>
320338
<configuration>
321339
<argLine>-XX:MaxPermSize=256m</argLine>
322-
<source>1.6</source>
323-
<target>${targetJavaVersion}</target>
324-
<encoding>UTF-8</encoding>
340+
<source>${maven.compiler.source}</source>
341+
<target>${maven.compiler.target}</target>
325342
</configuration>
326343
</plugin>
327344
<plugin>

0 commit comments

Comments
 (0)