Author: gertv
Date: Fri Sep 21 19:49:54 2012
New Revision: 1388649
URL: http://svn.apache.org/viewvc?rev=1388649&view=rev
Log:
SMX4-1247: Switch to svnpubsub for publishing documentation contents
Modified:
servicemix/documentation/trunk/pom.xml
Modified: servicemix/documentation/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/documentation/trunk/pom.xml?rev=1388649&r1=1388648&r2=1388649&view=diff
==============================================================================
--- servicemix/documentation/trunk/pom.xml (original)
+++ servicemix/documentation/trunk/pom.xml Fri Sep 21 19:49:54 2012
@@ -40,7 +40,6 @@
<jetty-port>8080</jetty-port>
<webapp.srcdir>${project.basedir}/src/main/webapp</webapp.srcdir>
<webapp.dir>${project.build.directory}/webapp</webapp.dir>
- <maven.wagon.version>2.2</maven.wagon.version>
<pdf.required>false</pdf.required>
@@ -56,6 +55,8 @@
<servicemix.version>4.4.2</servicemix.version>
<servicemix.docs.location>4.4.x</servicemix.docs.location>
+
+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
@@ -384,16 +385,7 @@
</executions>
<configuration>
<warSourceDirectory>${webapp.dir}</warSourceDirectory>
- <remoteServerId>people.apache.org</remoteServerId>
-
<remoteServerUrl>scp://people.apache.org/www/servicemix.apache.org/docs/${servicemix.docs.location}</remoteServerUrl>
</configuration>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ssh</artifactId>
- <version>${maven.wagon.version}</version>
- </dependency>
- </dependencies>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
@@ -461,6 +453,16 @@
</instructions>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-publish-plugin</artifactId>
+ <version>1.0-beta-1</version>
+ <configuration>
+ <checkinComment>Updating ServiceMix
${servicemix.docs.location} documentation contents</checkinComment>
+
<pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/servicemix/site/production/docs/${servicemix.docs.location}</pubScmUrl>
+ <content>${project.build.directory}/sitegen</content>
+ </configuration>
+ </plugin>
</plugins>
</build>