Hi Ian, 2008/12/15 <[email protected]>: > Author: ieb > Date: Sun Dec 14 23:40:03 2008 > New Revision: 726632 > > URL: http://svn.apache.org/viewvc?rev=726632&view=rev > Log: > [maven-release-plugin] prepare release 1.0.0-incubating-RC1-test > > Modified: > incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml > incubator/shindig/branches/1.0.x-incubating/features/pom.xml > incubator/shindig/branches/1.0.x-incubating/java/common/pom.xml > incubator/shindig/branches/1.0.x-incubating/java/gadgets/pom.xml > incubator/shindig/branches/1.0.x-incubating/java/pom.xml > incubator/shindig/branches/1.0.x-incubating/java/samples/pom.xml > incubator/shindig/branches/1.0.x-incubating/java/server/pom.xml > incubator/shindig/branches/1.0.x-incubating/java/social-api/pom.xml > incubator/shindig/branches/1.0.x-incubating/pom.xml > > Modified: incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml > URL: > http://svn.apache.org/viewvc/incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml?rev=726632&r1=726631&r2=726632&view=diff > ============================================================================== > --- incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml (original) > +++ incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml Sun Dec 14 > 23:40:03 2008 > @@ -1,31 +1,10 @@ > -<?xml version="1.0" encoding="UTF-8"?> > -<!-- > -Licensed to the Apache Software Foundation (ASF) under one > -or more contributor license agreements. See the NOTICE file > -distributed with this work for additional information > -regarding copyright ownership. The ASF licenses this file > -to you under the Apache License, Version 2.0 (the > -"License"); you may not use this file except in compliance > -with the License. You may obtain a copy of the License at > - > -http://www.apache.org/licenses/LICENSE-2.0 > - > -Unless required by applicable law or agreed to in writing, > -software distributed under the License is distributed on an > -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY > -KIND, either express or implied. See the License for the > -specific language governing permissions and limitations > -under the License. > ---> > -<project xmlns="http://maven.apache.org/POM/4.0.0" > - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd"> > +<project xmlns="http://maven.apache.org/POM/4.0.0" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd">
The release plugin skips the header due to MRELEASE-221. To prevent this, you need to write the <project /> in one line. [SNIP] > <scm> > - > <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly > - </connection> > - > <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly > - </developerConnection> > - <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly</url> > + > <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/tags/1.0.0-incubating-RC1-test</connection> > + > <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/tags/1.0.0-incubating-RC1-test</developerConnection> > + > <url>http://svn.apache.org/viewvc/incubator/shindig/tags/1.0.0-incubating-RC1-test</url> > </scm> The SCM connection was wrong (ie trunk instead of branch). I will create an issue for this. Cheers, Vincent

