Hi all,
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  the plugin, correctly, ask
me to resolve SNAPSHOTs dependencies. (framework-business   && 
framework-sistema)
Unfortunatly at the end of the process only framework-sistema 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 ...).
Is this the correct behavior ? 
I hope no, becouse I should  modify al my poms.

Morever , the flag "updateDependencies=false" doesn't run. I think it has
not managed.

Best regards
Alex




-- 
View this message in context: 
http://www.nabble.com/Release-plugin-%28prepare%29-doesn%27t--update-more-than-one-dependencies-in-multi-modules-project-tp15293510s177p15293510.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to