My parent project defines the following:
<distributionManagement>
<snapshotRepository>
<id>Yo</id>
<name>Yo Repository</name>
<url>scp://yo/home/maven/www</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
When I run the following command in the child project:
mvn help:effective-pom
I get the following results:
...
<distributionManagement>
<snapshotRepository>
<id>Yo</id>
<name>Yo Repository</name>
<url>scp://yo/home/maven/www</url>
</snapshotRepository>
</distributionManagement>
...
It looks like inheritence is ignoring the <uniqueVersion> element.
Shouldn't the child POM be inheriting that? Or am I doing something
wrong?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]