Repository: bigtop Updated Branches: refs/heads/master f301b9a3b -> ec8bb5f42
BIGTOP-1311. allow easy site publishing Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/ec8bb5f4 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/ec8bb5f4 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/ec8bb5f4 Branch: refs/heads/master Commit: ec8bb5f4255bd8fcc9ac29605fab79f7b52bfc8f Parents: f301b9a Author: Roman Shaposhnik <[email protected]> Authored: Sun May 18 13:00:06 2014 -0700 Committer: Roman Shaposhnik <[email protected]> Committed: Sun May 18 13:00:16 2014 -0700 ---------------------------------------------------------------------- pom.xml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 50 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/ec8bb5f4/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 2abace0..05acaac 100644 --- a/pom.xml +++ b/pom.xml @@ -249,7 +249,7 @@ <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> - <version>1.0-beta-6</version> + <version>2.6</version> </extension> </extensions> <pluginManagement> @@ -306,8 +306,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> - <version>2.1.1</version> - + <version>3.3</version> + <configuration> + <skipDeploy>true</skipDeploy> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -324,6 +326,11 @@ <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-publish-plugin</artifactId> + <version>1.0</version> + </plugin> </plugins> </pluginManagement> <plugins> @@ -383,9 +390,48 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <executions> + <execution> + <id>stage-for-scm-publish</id> + <phase>post-site</phase> + <goals> + <goal>stage</goal> + </goals> + <configuration> + <skipDeploy>false</skipDeploy> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-publish-plugin</artifactId> + <executions> + <execution> + <id>scm-publish</id> + <phase>site-deploy</phase> + <goals> + <goal>publish-scm</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.7</version> + </plugin> + </plugins> + </reporting> + <issueManagement> <system>JIRA</system> <url>http://issues.apache.org/jira/browse/BIGTOP</url> @@ -423,7 +469,7 @@ <distributionManagement> <site> <id>apache.website</id> - <url>scpexe://people.apache.org/www/bigtop.apache.org/</url> + <url>scm:svn:https://svn.apache.org/repos/infra/websites/staging/bigtop/trunk/content</url> </site> </distributionManagement>
