rename property to avoid issue with the one used in javadoc plugin

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1379177 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-08-30 21:55:58 +00:00
parent cae92d6c82
commit ce750a4972
1 changed files with 22 additions and 4 deletions

26
pom.xml
View File

@ -65,7 +65,7 @@
<distributionManagement>
<site>
<id>apache.website</id>
<url>${siteUrlDeployment}</url>
<url>scm:svn:https://svn.apache.org/repos/asf/archiva/site-content/redback/core</url>
</site>
</distributionManagement>
@ -84,7 +84,6 @@
<redbackTestJdbcUrl>jdbc:hsqldb:mem:redback-test</redbackTestJdbcUrl>
<redbackTestJdbcDriver>org.hsqldb.jdbcDriver</redbackTestJdbcDriver>
<siteFilePath>${user.home}/redback-core-site-deploy</siteFilePath>
<scmPubCheckoutDirectory>${user.home}/redback-core-site-content</scmPubCheckoutDirectory>
</properties>
@ -682,11 +681,29 @@
<artifactId>jpox-maven-plugin</artifactId>
<version>1.1.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<skipDeploy>true</skipDeploy>
</configuration>
<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>
<configuration>
<pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/archiva/site-content/redback/core</pubScmUrl>
<checkinComment>Apache Redback Core site deployment</checkinComment>
</configuration>
</plugin>
@ -817,9 +834,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadocVersion}</version>
<version>${javadocPluginVersion}</version>
<inherited>false</inherited>
<configuration>
<javadocVersion>1.6</javadocVersion>
<docletArtifact>
<groupId>com.google.doclava</groupId>
<artifactId>doclava</artifactId>