|
1 | 1 | <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"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 |
|
| 4 | + <parent> |
| 5 | + <groupId>org.apache</groupId> |
| 6 | + <artifactId>apache</artifactId> |
| 7 | + <version>14</version> |
| 8 | + </parent> |
| 9 | + |
4 | 10 | <groupId>com.twitter</groupId> |
5 | 11 | <artifactId>parquet</artifactId> |
6 | 12 | <version>1.6.0rc3-SNAPSHOT</version> |
7 | 13 | <packaging>pom</packaging> |
8 | 14 |
|
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> |
11 | 17 | <description>Parquet is a columnar storage format that supports nested data. This provides the java implementation.</description> |
12 | 18 |
|
13 | 19 | <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> |
17 | 23 | </scm> |
18 | 24 |
|
19 | 25 | <licenses> |
|
23 | 29 | </license> |
24 | 30 | </licenses> |
25 | 31 |
|
| 32 | + <issueManagement> |
| 33 | + <system>JIRA</system> |
| 34 | + <url>https://issues.apache.org/jira/browse/PARQUET</url> |
| 35 | + </issueManagement> |
| 36 | + |
26 | 37 | <mailingLists> |
27 | 38 | <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> |
31 | 49 | </mailingList> |
32 | 50 | </mailingLists> |
33 | 51 |
|
|
314 | 332 | </executions--> |
315 | 333 | </plugin> |
316 | 334 | <plugin> |
| 335 | + <!-- Override source and target from the ASF parent --> |
317 | 336 | <groupId>org.apache.maven.plugins</groupId> |
318 | 337 | <artifactId>maven-compiler-plugin</artifactId> |
319 | | - <version>2.0.2</version> |
320 | 338 | <configuration> |
321 | 339 | <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> |
325 | 342 | </configuration> |
326 | 343 | </plugin> |
327 | 344 | <plugin> |
|
0 commit comments