The problem appears to be that the release plugin missed some urls.
The fix is below,
would anyone mind if I committed the change to the tag (bad practice I
know) ?
It would save reverting the tag and redoing the whole release.
Ian
Index: pom.xml
===================================================================
--- pom.xml (revision 772201)
+++ pom.xml (working copy)
@@ -73,10 +73,10 @@
<!-- D I S T R I B U T I O N M A N A G E M E N
T -->
<!--
======================================================================
-->
<distributionManagement>
- <!-- This is the technical website for Shindig 1.0.x -->
+ <!-- This is the technical website for Shindig 1.0 -->
<site>
<id>apache.website</id>
- <url>scp://people.apache.org/www/incubator.apache.org/shindig/
shindig-1.0.x</url>
+ <url>scp://people.apache.org/www/incubator.apache.org/shindig/
shindig-1.0</url>
</site>
</distributionManagement>
@@ -494,8 +494,8 @@
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.2</version>
<configuration>
- <configLocation>http://svn.apache.org/repos/asf/incubator/shindig/branches/1.0.x-incubating/site/checkstyle.xml
</configLocation>
- <headerLocation>http://svn.apache.org/repos/asf/incubator/shindig/branches/1.0.x-incubating/site/java.header
</headerLocation>
+ <configLocation>http://svn.apache.org/repos/asf/incubator/shindig/tags/shindig-project-1.0-incubating/site/checkstyle.xml
</configLocation>
+ <headerLocation>http://svn.apache.org/repos/asf/incubator/shindig/tags/shindig-project-1.0-incubating/site/java.header
</headerLocation>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
On 6 May 2009, at 16:27, Ian Boston wrote:
Hi,
The release is in staging for checking, however I have noticed that
when republishing the site it went up with paths like
/www/incubator.apache.org/shindig/shindig-1.0.x/shindig-parent/
shindig-server/
IMHO this should have been
/www/incubator.apache.org/shindig/shindig-1.0/shindig-parent/shindig-
server/
Anyone know how to change this to make it end up in the right place.
The
cd target/checkout
mvn site -Preporting
mvn site:deploy
was done as per step 4.
Staging repo is:
https://repository.apache.org/content/repositories/shindig-
staging-011/
I was going to ask for a vote.... but I think the site needs fixing
first.
Ian