You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "jcrouvi (JIRA)" <ji...@codehaus.org> on 2008/11/19 16:27:41 UTC

[jira] Commented: (MRELEASE-128) SCM properties being replaced during release:perform

    [ http://jira.codehaus.org/browse/MRELEASE-128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=154758#action_154758 ] 

jcrouvi commented on MRELEASE-128:
----------------------------------

Hi,
We are still experiencing this problem with the following configuration:
 $ mvn --version
  Maven version: 2.0.9
  Java version: 1.6.0_07
  OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows"
  org.apache.maven.plugins:maven-release-plugin:maven-plugin:2.0-beta-7:runtime

The POM files are changed after having called
  mvn  release:prepare
(not even a release:perform).

scm part in parent POM before release:prepare:
  <scm>
    <url>http://cvs.server.xx/cvs/test/continuous_integration/${project.artifactId}</url>
    <developerConnection>${cvs.connection.test}continuous_integration/${project.artifactId}</developerConnection>
  </scm>

scm part in parent POM AFTER release:prepare (properties have been replaced):
  <scm>
    <url>http://cvs.server.xx/cvs/test/continuous_integration/ipi-multimodule</url>
    <developerConnection>scm:cvs|pserver|build_user@cvs.server.xx|/var/cvs/test|continuous_integration/ipi-multimodule</developerConnection>
  </scm>

scm part in child POM before release:prepare:
  <scm>
    <url>${parent.scm.url}/${project.artifactId}</url>
  </scm>

scm part in child POM AFTER release:prepare (properties have been replaced and a new line has been inserted; inheritance is broken!):
  <scm>
    <url>${parent.scm.url}/ipi-multimodule-a</url>
    <developerConnection>scm:cvs|pserver|build_user@cvs.server.xx|/var/cvs/test|continuous_integration/ipi-multimodule-a/ipi-multimodule-a</developerConnection>
  </scm>

> SCM properties being replaced during release:perform
> ----------------------------------------------------
>
>                 Key: MRELEASE-128
>                 URL: http://jira.codehaus.org/browse/MRELEASE-128
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>         Environment: Windows XP client, Linux repo, CVS, Maven 2.0.4
>            Reporter: Craig Dickson
>            Assignee: Emmanuel Venisse
>            Priority: Critical
>             Fix For: 2.0
>
>         Attachments: after-release-perform-pom.xml, after-release-prepre-pom.xml, MNG-128-maven-release-manager.patch, MRELEASE-128_cvs_hack_RewritePomsForDevelopmentPhase.java.patch, original-pom.xml
>
>
> The <scm> section of a pom in CVS for a pom archetype project looks like this prior to executing release:prepare :
> <scm>
> 	<connection>${base.cvs.url}:commons-maven/uber-pom</connection>
> 	<developerConnection>${base.cvs.url}:commons-maven/uber-pom</developerConnection>
> 	<url>${base.viewcvs.url}/commons-maven/uber-pom</url>
> </scm>
> Then after executing release:prepare, the pom in CVS looks like this (new <tag> tag is only difference):
> <scm>
> 	<connection>${base.cvs.url}:commons-maven/uber-pom</connection>
> 	<developerConnection>${base.cvs.url}:commons-maven/uber-pom</developerConnection>
> 	<url>${base.viewcvs.url}/commons-maven/uber-pom</url>
> 	<tag>R-1_7</tag>
> </scm>
> Then after executing release:perform, the pom looks like this in CVS:
> <scm>
> 	<connection>scm:cvs:pserver:behrcvs.masco-coatings.com:/usr/cvsroot:commons-maven/uber-pom</connection>
> 	<developerConnection>scm:cvs:pserver:behrcvs.masco-coatings.com:/usr/cvsroot:commons-maven/uber-pom</developerConnection>
> 	<url>http://behrcvs.masco-coatings.com/cgi-bin/viewcvs.cgi/commons-maven/uber-pom</url>
> </scm>
> Notice that the properties that were there for the base URLs for CVS and ViewCVS have been replaced with literal values. 
> No other properties in the POM are being replaced

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira