You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Yann Le Du (JIRA)" <ji...@codehaus.org> on 2005/10/12 15:26:11 UTC

[jira] Created: (MNG-1188) release:prepare changes incorrectly tag pom scm if tagbase not standard

release:prepare changes incorrectly tag pom scm if tagbase not standard
-----------------------------------------------------------------------

         Key: MNG-1188
         URL: http://jira.codehaus.org/browse/MNG-1188
     Project: Maven 2
        Type: Bug
  Components: maven-release-plugin  
    Versions: 2.0-beta-3    
 Reporter: Yann Le Du


/COMMON/trunk/maven-plugins/maven-deps-plugin/pom.xml :
  <scm>
    <connection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</connection>
    <developerConnection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</developerConnection>
    <url>http://host.corp.com/viewcvs/COMMON/trunk/maven-plugins/maven-deps-plugin/</url>
  </scm>
[...]
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0-beta-2</version>
        <configuration>
          <tagBase>svn://host:3691/COMMON/tags/</tagBase>

m2 release:prepare tags creates correctly a tag in /COMMON/tags/maven-deps-plugin_V1.0.0, but the tag pom.xml contains :
  <scm>
    <connection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</connection>
    <developerConnection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</developerConnection>
    <url>http://host.corp.com/viewcvs/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</url>
  </scm>

...that is, maven-plugins/maven-deps-plugin/ is concatenated at the end of URLs, although we don't expect it.

The tag release-pom.xml and repo POMs contain correct trunk URLs.

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MNG-1188) release:prepare changes incorrectly tag pom scm if tagbase not standard

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1188?page=all ]

John Casey updated MNG-1188:
----------------------------

    Description: 
/COMMON/trunk/maven-plugins/maven-deps-plugin/pom.xml :
  <scm>
    <connection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</connection>
    <developerConnection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</developerConnection>
    <url>http://host.corp.com/viewcvs/COMMON/trunk/maven-plugins/maven-deps-plugin/</url>
  </scm>
[...]
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0-beta-2</version>
        <configuration>
          <tagBase>svn://host:3691/COMMON/tags/</tagBase>

m2 release:prepare tags creates correctly a tag in /COMMON/tags/maven-deps-plugin_V1.0.0, but the tag pom.xml contains :
  <scm>
    <connection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</connection>
    <developerConnection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</developerConnection>
    <url>http://host.corp.com/viewcvs/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</url>
  </scm>

...that is, maven-plugins/maven-deps-plugin/ is concatenated at the end of URLs, although we don't expect it.

The tag release-pom.xml and repo POMs contain correct trunk URLs.

  was:
/COMMON/trunk/maven-plugins/maven-deps-plugin/pom.xml :
  <scm>
    <connection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</connection>
    <developerConnection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</developerConnection>
    <url>http://host.corp.com/viewcvs/COMMON/trunk/maven-plugins/maven-deps-plugin/</url>
  </scm>
[...]
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0-beta-2</version>
        <configuration>
          <tagBase>svn://host:3691/COMMON/tags/</tagBase>

m2 release:prepare tags creates correctly a tag in /COMMON/tags/maven-deps-plugin_V1.0.0, but the tag pom.xml contains :
  <scm>
    <connection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</connection>
    <developerConnection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</developerConnection>
    <url>http://host.corp.com/viewcvs/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</url>
  </scm>

...that is, maven-plugins/maven-deps-plugin/ is concatenated at the end of URLs, although we don't expect it.

The tag release-pom.xml and repo POMs contain correct trunk URLs.

    Fix Version: 2.0.1
    Environment: 

need to use new maven-scm conventions (currently implemented in the update command, I believe)

> release:prepare changes incorrectly tag pom scm if tagbase not standard
> -----------------------------------------------------------------------
>
>          Key: MNG-1188
>          URL: http://jira.codehaus.org/browse/MNG-1188
>      Project: Maven 2
>         Type: Bug
>   Components: maven-release-plugin
>     Versions: 2.0-beta-3
>     Reporter: Yann Le Du
>      Fix For: 2.0.1

>
>
> /COMMON/trunk/maven-plugins/maven-deps-plugin/pom.xml :
>   <scm>
>     <connection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</connection>
>     <developerConnection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</developerConnection>
>     <url>http://host.corp.com/viewcvs/COMMON/trunk/maven-plugins/maven-deps-plugin/</url>
>   </scm>
> [...]
>         <artifactId>maven-release-plugin</artifactId>
>         <version>2.0-beta-2</version>
>         <configuration>
>           <tagBase>svn://host:3691/COMMON/tags/</tagBase>
> m2 release:prepare tags creates correctly a tag in /COMMON/tags/maven-deps-plugin_V1.0.0, but the tag pom.xml contains :
>   <scm>
>     <connection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</connection>
>     <developerConnection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</developerConnection>
>     <url>http://host.corp.com/viewcvs/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</url>
>   </scm>
> ...that is, maven-plugins/maven-deps-plugin/ is concatenated at the end of URLs, although we don't expect it.
> The tag release-pom.xml and repo POMs contain correct trunk URLs.

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MNG-1188) release:prepare changes incorrectly tag pom scm if tagbase not standard

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1188?page=all ]

John Casey updated MNG-1188:
----------------------------

    Fix Version:     (was: 2.0.1)
                 2.0.2

> release:prepare changes incorrectly tag pom scm if tagbase not standard
> -----------------------------------------------------------------------
>
>          Key: MNG-1188
>          URL: http://jira.codehaus.org/browse/MNG-1188
>      Project: Maven 2
>         Type: Bug
>   Components: maven-release-plugin
>     Versions: 2.0-beta-3
>     Reporter: Yann Le Du
>      Fix For: 2.0.2

>
>
> /COMMON/trunk/maven-plugins/maven-deps-plugin/pom.xml :
>   <scm>
>     <connection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</connection>
>     <developerConnection>scm:svn:svn://host:3691/COMMON/trunk/maven-plugins/maven-deps-plugin/</developerConnection>
>     <url>http://host.corp.com/viewcvs/COMMON/trunk/maven-plugins/maven-deps-plugin/</url>
>   </scm>
> [...]
>         <artifactId>maven-release-plugin</artifactId>
>         <version>2.0-beta-2</version>
>         <configuration>
>           <tagBase>svn://host:3691/COMMON/tags/</tagBase>
> m2 release:prepare tags creates correctly a tag in /COMMON/tags/maven-deps-plugin_V1.0.0, but the tag pom.xml contains :
>   <scm>
>     <connection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</connection>
>     <developerConnection>scm:svn:svn://host:3691/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</developerConnection>
>     <url>http://host.corp.com/viewcvs/COMMON/tags/maven-deps-plugin_V1.0.0/maven-plugins/maven-deps-plugin/</url>
>   </scm>
> ...that is, maven-plugins/maven-deps-plugin/ is concatenated at the end of URLs, although we don't expect it.
> The tag release-pom.xml and repo POMs contain correct trunk URLs.

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org