You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Alessandro Zucchi (JIRA)" <ji...@codehaus.org> on 2008/02/07 13:34:28 UTC

[jira] Created: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Release plugin (prepare goal) doesn't update more than one snapshot dependencies
--------------------------------------------------------------------------------

                 Key: MRELEASE-323
                 URL: http://jira.codehaus.org/browse/MRELEASE-323
             Project: Maven 2.x Release Plugin
          Issue Type: Bug
    Affects Versions: 2.0-beta-7
         Environment: Any
            Reporter: Alessandro Zucchi
            Priority: Blocker
         Attachments: patch.txt

I have a project so structured:

au --------  au-business
         |
         |----  au-sistema

Dependencies in au are:

...
<dependencyManagement>
        <dependencies>
                <dependency>
                        <groupId>com.zucchetti.qweb.au</groupId>
                        <artifactId>au-business</artifactId>
                        <version>${project.version}</version>
                </dependency>
               
        <!--  external dependencies-->
                <dependency>
                        <groupId>com.zucchetti.qweb.framework</groupId>
                        <artifactId>sistema</artifactId>
                        <version>03.00.02-SNAPSHOT</version>
                </dependency>
                <dependency>
                        <groupId>com.zucchetti.qweb.framework</groupId>
                        <artifactId>business</artifactId>
                        <version>03.00.02-SNAPSHOT</version>
                </dependency>
        </dependencies>
</dependencyManagement>
...

Dependencies in au-business are:
...
<dependencies>
                <dependency>
                        <groupId>com.zucchetti.qweb.framework</groupId>
                        <artifactId>business</artifactId>
                </dependency>
        </dependencies>
...

Dependencies in au-sistema are:
...
        <dependencies>
                <dependency>
                        <groupId>com.zucchetti.qweb.au</groupId>
                        <artifactId>au-business</artifactId>
                </dependency>
                <dependency>
                        <groupId>com.zucchetti.qweb.framework</groupId>
                        <artifactId>sistema</artifactId>
                </dependency>
        </dependencies>
...

When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.

So, I tryed to resolve the problem.
I've attached a patch.

Best regards
Alex 

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

        

[jira] Updated: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "Alessandro Zucchi (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alessandro Zucchi updated MRELEASE-323:
---------------------------------------

    Attachment: test.zip

The sample

> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: http://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

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

        

[jira] Closed: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "Stephen Connolly (JIRA)" <ji...@codehaus.org>.
     [ https://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stephen Connolly closed MRELEASE-323.
-------------------------------------

       Resolution: Duplicate
    Fix Version/s: 2.1

Duplicate of MRELEASE-589

> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: https://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>          Components: prepare
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>             Fix For: 2.1
>
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "Alessandro Zucchi (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191417#action_191417 ] 

Alessandro Zucchi commented on MRELEASE-323:
--------------------------------------------

<<<<Hopefully version 2.0-beta-10 will contain this or another similar patch resolving the issue.>>>>
I hope so !!!
It's annoying apply the patch on every newer version
Thanks
Alex.


> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: http://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>          Components: prepare
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

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

        

[jira] Commented: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "Alessandro Zucchi (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_125271 ] 

Alessandro Zucchi commented on MRELEASE-323:
--------------------------------------------

Hi all,
I found the time to upload a simple example that reproduce the problem.

Step to follow:
1- install project in your repository (updating your SSC url (svn/ cvs ..)
2- run:   mvn -DpreparationGoals=clean,install -DautoVersionSubmodules=true release:clean release:prepare           on framework project 
3- run:    mvn -DpreparationGoals=clean,install -DautoVersionSubmodules=true release:clean release:prepare           on au project  end resolve all the SNAPSHOT dependencies prompted (framework business &&  framework sistema)
4- Look at the au root pom.xml. You will see something of similar

<dependency>
	<groupId>test.zucchetti.qweb.framework</groupId>
	<artifactId>sistema</artifactId>
        <version>03.00.05-SNAPSHOT</version>
</dependency>
<dependency>
	<groupId>test.zucchetti.qweb.framework</groupId>
	<artifactId>business</artifactId>
	<version>03.00.04-SNAPSHOT</version>
</dependency>

Only one  SNAPSHOT dependency has been correctly updated.
For me this is a bug the I tryed to resolve  with this patch previously attached

Any help is appreciated
Alex


> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: http://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

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

        

[jira] Commented: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "Scott Oster (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=265802#action_265802 ] 

Scott Oster commented on MRELEASE-323:
--------------------------------------

I have this same problem.  Is there a reason this patch has been ignored for 3 years, and this is still an open bug? Is more information needed?

> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: http://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>          Components: prepare
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

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

        

[jira] Updated: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "Arnaud Heritier (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arnaud Heritier updated MRELEASE-323:
-------------------------------------

    Component/s: prepare

> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: http://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>          Components: prepare
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

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

        

[jira] Commented: (MRELEASE-323) Release plugin (prepare goal) doesn't update more than one snapshot dependencies

Posted by "John Davis (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MRELEASE-323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=191372#action_191372 ] 

John Davis commented on MRELEASE-323:
-------------------------------------

We have found the same issue with the projects comprising our products: version 2.0-beta-9 of the Release Plugin does not update all of a project's dependencies when used in an interactive mode.
It did not matter whether the dependencies were part of a <dependencyManagement> section or a <dependencies> section in the POM. 

For example, here is the <dependencies> section from one of our POMs.

    <dependencies>
        <dependency>
            <groupId>openmap</groupId>
            <artifactId>openmap</artifactId>
            <version>4.6.5</version>
        </dependency>

        <dependency>
            <groupId>com.echostorm.commons</groupId>
            <artifactId>commons-security-api</artifactId>
            <version>1.1.5-SNAPSHOT</version>
        </dependency>

        <dependency>
                <groupId>com.echostorm.commons</groupId>
                <artifactId>commons-xbroadcaster</artifactId>
                <version>1.7.5-SNAPSHOT</version>
                <exclusions>
                  <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                  </exclusion>
                </exclusions>
        </dependency>

        <dependency>
            <groupId>com.echostorm.adlib</groupId>
            <artifactId>adlib-chat-service-api</artifactId>
            <version>1.0.5-SNAPSHOT</version>
        </dependency>

    </dependencies>

After excuting "mvn  release:prepare -Dtag="adlib-3.6-rc5" -DaddSchema=false -DpreparationGoals="clean install" ", the tagged version of the POM was:

    <dependencies>
        <dependency>
            <groupId>openmap</groupId>
            <artifactId>openmap</artifactId>
            <version>4.6.5</version>
        </dependency>

        <dependency>
            <groupId>com.echostorm.commons</groupId>
            <artifactId>commons-security-api</artifactId>
            <version>1.1.5-SNAPSHOT</version>
        </dependency>

        <dependency>
                <groupId>com.echostorm.commons</groupId>
                <artifactId>commons-xbroadcaster</artifactId>
                <version>1.7.5-SNAPSHOT</version>
                <exclusions>
                  <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                  </exclusion>
                </exclusions>
        </dependency>

        <dependency>
            <groupId>com.echostorm.adlib</groupId>
            <artifactId>adlib-chat-service-api</artifactId>
            <version>1.0.5</version>
        </dependency>

and the next development version was:

    <dependencies>
        <dependency>
            <groupId>openmap</groupId>
            <artifactId>openmap</artifactId>
            <version>4.6.5</version>
        </dependency>

        <dependency>
            <groupId>com.echostorm.commons</groupId>
            <artifactId>commons-security-api</artifactId>
            <version>1.1.5-SNAPSHOT</version>
        </dependency>

        <dependency>
                <groupId>com.echostorm.commons</groupId>
                <artifactId>commons-xbroadcaster</artifactId>
                <version>1.7.5-SNAPSHOT</version>
                <exclusions>
                  <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                  </exclusion>
                </exclusions>
        </dependency>

        <dependency>
            <groupId>com.echostorm.adlib</groupId>
            <artifactId>adlib-chat-service-api</artifactId>
            <version>1.0.6-SNAPSHOT</version>
        </dependency>

Notice that only the last dependency (adlib-chat-service-api) was updated in the tagged and next development versions of the POM.

I applied the patch supplied by Alessandro Zucchi to version 2.0-beta-9 and performed: 
       mvn  release:prepare -Dtag="adlib-3.6-rc5" -DaddSchema=false -DpreparationGoals="clean install" 

The tagged version is now:
    <dependencies>
        <dependency>
            <groupId>openmap</groupId>
            <artifactId>openmap</artifactId>
            <version>4.6.5</version>
        </dependency>

        <dependency>
            <groupId>com.echostorm.commons</groupId>
            <artifactId>commons-security-api</artifactId>
            <version>1.1.5</version>
        </dependency>

        <dependency>
                <groupId>com.echostorm.commons</groupId>
                <artifactId>commons-xbroadcaster</artifactId>
                <version>1.7.5</version>
                <exclusions>
                  <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                  </exclusion>
                </exclusions>
        </dependency>

        <dependency>
            <groupId>com.echostorm.adlib</groupId>
            <artifactId>adlib-chat-service-api</artifactId>
            <version>1.0.5</version>
        </dependency>

    </dependencies>

and the next development version:

    <dependencies>
        <dependency>
            <groupId>openmap</groupId>
            <artifactId>openmap</artifactId>
            <version>4.6.5</version>
        </dependency>

        <dependency>
            <groupId>com.echostorm.commons</groupId>
            <artifactId>commons-security-api</artifactId>
            <version>1.1.6-SNAPSHOT</version>
        </dependency>

        <dependency>
                <groupId>com.echostorm.commons</groupId>
                <artifactId>commons-xbroadcaster</artifactId>
                <version>1.7.6-SNAPSHOT</version>
                <exclusions>
                  <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                  </exclusion>
                </exclusions>
        </dependency>

        <dependency>
            <groupId>com.echostorm.adlib</groupId>
            <artifactId>adlib-chat-service-api</artifactId>
            <version>1.0.6-SNAPSHOT</version>
        </dependency>

    </dependencies>

After applying the patch, all dependencies are updated. This was also the cases with several other projects.

Hopefully version 2.0-beta-10 will contain this or another similar patch resolving the issue.

Please let me know if I can be of further assistance.

Thanks,

John Davis
EchoStorm Worldwide, LLC


> Release plugin (prepare goal) doesn't update more than one snapshot dependencies
> --------------------------------------------------------------------------------
>
>                 Key: MRELEASE-323
>                 URL: http://jira.codehaus.org/browse/MRELEASE-323
>             Project: Maven 2.x Release Plugin
>          Issue Type: Bug
>          Components: prepare
>    Affects Versions: 2.0-beta-7
>         Environment: Any
>            Reporter: Alessandro Zucchi
>            Priority: Blocker
>         Attachments: patch.txt, test.zip
>
>
> I have a project so structured:
> au --------  au-business
>          |
>          |----  au-sistema
> Dependencies in au are:
> ...
> <dependencyManagement>
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                         <version>${project.version}</version>
>                 </dependency>
>                
>         <!--  external dependencies-->
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                         <version>03.00.02-SNAPSHOT</version>
>                 </dependency>
>         </dependencies>
> </dependencyManagement>
> ...
> Dependencies in au-business are:
> ...
> <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>business</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> Dependencies in au-sistema are:
> ...
>         <dependencies>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.au</groupId>
>                         <artifactId>au-business</artifactId>
>                 </dependency>
>                 <dependency>
>                         <groupId>com.zucchetti.qweb.framework</groupId>
>                         <artifactId>sistema</artifactId>
>                 </dependency>
>         </dependencies>
> ...
> When I make a mvn release:clean release:prepare  of au project the plugin, correctly, ask me to resolve SNAPSHOTs dependencies. (framework-business   &&  framework-sistema)
> Unfortunatly at the end of the process only framework-sistema dependency (in au project) has been modified, while framework-business no.
> I've debuged the problem and I found that if I force the two dependencies (framework-sistema, framework-business) in the parent pom (pom of "au") all run fine (also if the process to resolve SNAPSHOT dependencies get prompted tree times ...  too much I say ...).But I can't do this change in production.
> So, I tryed to resolve the problem.
> I've attached a patch.
> Best regards
> Alex 

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