Hi,
During mvn release:perform -DdryRun=true I would expect a "you still have
snapshot dependencies" message from the plugin - but that doesnt happen.
I can release the multi-module project with snapshot dependencies...
I'm using maven-release-plugin <version>2.0-beta-8</version> with Base
Clearcase and allowTimestampedSnapshots=false
I have a multimodule build with 2 modules:
soapui
pom.xml
soapui-extension
pom.xml
soapui-parent
pom.xml
The "soapui" (root) pom.xml has 2 submodules:
<version>0.4-SNAPSHOT</version>
<modules>
<module>soapui-extension</module>
<module>soapui-parent</module>
</modules>
the "soapui-parent" pom.xml has the following dependency:
<dependency>
<groupId>com.gide.gdcams.test.soapui</groupId>
<artifactId>soapui-extension</artifactId>
<version>0.4-SNAPSHOT</version>
</dependency>
Thanx for any advice why "detect snapshot dependencies" doesnt work in
that case.
torsten