Repository: parquet-mr Updated Branches: refs/heads/parquet-1.7.0 c1dd8f3b3 -> 7b083de67
PARQUET-263: Update pom to use Apache maven release config. Project: http://git-wip-us.apache.org/repos/asf/parquet-mr/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-mr/commit/57daf132 Tree: http://git-wip-us.apache.org/repos/asf/parquet-mr/tree/57daf132 Diff: http://git-wip-us.apache.org/repos/asf/parquet-mr/diff/57daf132 Branch: refs/heads/parquet-1.7.0 Commit: 57daf13273f7e252da79ad8682494ef82298694d Parents: c1dd8f3 Author: Ryan Blue <[email protected]> Authored: Thu May 14 16:35:29 2015 -0700 Committer: Ryan Blue <[email protected]> Committed: Thu May 14 16:35:29 2015 -0700 ---------------------------------------------------------------------- pom.xml | 95 +++++++----------------------------------------------------- 1 file changed, 11 insertions(+), 84 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/57daf132/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5da6e3a..105b45f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> - <version>14</version> + <version>16</version> </parent> <groupId>org.apache.parquet</groupId> @@ -56,32 +56,6 @@ </developer> </developers> - <distributionManagement> - <snapshotRepository> - <id>sonatype-nexus-snapshots</id> - <name>Sonatype OSS</name> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> - <repository> - <id>sonatype-nexus-staging</id> - <name>Nexus Release Repository</name> - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> - </repository> - </distributionManagement> - - <repositories> - <repository> - <id>sonatype-nexus-snapshots</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - <releases> - <enabled>false</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - </repositories> - <!-- this is needed for maven-thrift-plugin, would like to remove this. see: https://issues.apache.org/jira/browse/THRIFT-1536 --> <pluginRepositories> @@ -211,6 +185,16 @@ <pluginManagement> <plugins> <plugin> + <!-- Disable the source artifact from ASF parent --> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>source-release-assembly</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <dependencies> @@ -247,16 +231,6 @@ </executions> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-release-plugin</artifactId> - <version>2.1</version> - <configuration> - <mavenExecutorId>forked-path</mavenExecutorId> - <useReleaseProfile>false</useReleaseProfile> - <arguments>-Psonatype-oss-release</arguments> - </configuration> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.1</version> @@ -476,53 +450,6 @@ </plugins> </build> </profile> - <profile> - <id>sonatype-oss-release</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <version>2.1.2</version> - <executions> - <execution> - <id>attach-sources</id> - <goals> - <goal>jar-no-fork</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.7</version> - <executions> - <execution> - <id>attach-javadocs</id> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - <version>1.1</version> - <executions> - <execution> - <id>sign-artifacts</id> - <phase>verify</phase> - <goals> - <goal>sign</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> <profile> <id>hadoop-2</id>
