Author: hboutemy
Date: Sun Dec 8 17:18:32 2013
New Revision: 1549070
URL: http://svn.apache.org/r1549070
Log:
updated svnpubsub configuration
Modified:
maven/jxr/trunk/deploySite.sh
maven/jxr/trunk/pom.xml
Modified: maven/jxr/trunk/deploySite.sh
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/deploySite.sh?rev=1549070&r1=1549069&r2=1549070&view=diff
==============================================================================
--- maven/jxr/trunk/deploySite.sh (original)
+++ maven/jxr/trunk/deploySite.sh Sun Dec 8 17:18:32 2013
@@ -19,4 +19,5 @@
# under the License.
#
-mvn clean site-deploy scm-publish:publish-scm $@
+mvn -Preporting site site:stage
+mvn scm-publish:publish-scm
Modified: maven/jxr/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1549070&r1=1549069&r2=1549070&view=diff
==============================================================================
--- maven/jxr/trunk/pom.xml (original)
+++ maven/jxr/trunk/pom.xml Sun Dec 8 17:18:32 2013
@@ -50,29 +50,22 @@ under the License.
<system>jira</system>
<url>http://jira.codehaus.org/browse/JXR</url>
</issueManagement>
-
<ciManagement>
<system>Jenkins</system>
<url>https://builds.apache.org/job/maven-jxr/</url>
</ciManagement>
-
- <properties>
- <sitePluginVersion>3.3</sitePluginVersion>
-
- <maven.jxr.siteFilePath>${maven.site.cache}/maven-jxr</maven.jxr.siteFilePath>
- <maven.jxr.siteUrlDeployment>file://${maven.jxr.siteFilePath}</maven.jxr.siteUrlDeployment>
- <maven.jxr.scmPubCheckoutDirectory>${maven.site.cache}/maven-jxr-site-content</maven.jxr.scmPubCheckoutDirectory>
- <maven.jxr.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/maven/content/jxr</maven.jxr.scmPubUrl>
-
- </properties>
-
<distributionManagement>
<site>
<id>apache.website</id>
- <url>${maven.jxr.siteUrlDeployment}</url>
+ <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url>
</site>
</distributionManagement>
+ <properties>
+ <sitePluginVersion>3.3</sitePluginVersion>
+ <maven.site.path>jxr-archives/jxr-LATEST</maven.site.path>
+ </properties>
+
<modules>
<module>maven-jxr</module>
<module>maven-jxr-plugin</module>
@@ -113,10 +106,9 @@ under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
- <checkoutDirectory>${maven.jxr.scmPubCheckoutDirectory}</checkoutDirectory>
- <pubScmUrl>scm:svn:${maven.jxr.scmPubUrl}</pubScmUrl>
- <checkinComment>Apache Maven Jxr site deployment</checkinComment>
- <content>${maven.jxr.siteFilePath}</content>
+ <content>${project.reporting.outputDirectory}</content>
+ <pubScmUrl>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</pubScmUrl>
+ <checkoutDirectory>${maven.site.cache}/${maven.site.path}</checkoutDirectory>
<tryUpdate>true</tryUpdate>
</configuration>
</plugin>
|