Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.2-M1
-
Fix Version/s: 1.4-M1
-
Component/s: None
-
Labels:None
-
Environment:Maven 2.0.9, Windows XP Servicepack 3, Archiva 1.2-M1
-
Number of attachments :
Description
I have a pom with a number of modules. So what I have done is:
I define a property in this pom:
<properties>
<version.commons.beanutils>1.7.0</version.commons.beanutils>
</properties>
In some of the module pom's i define the following dependencies:
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>$
</dependency>
Maven retrieves correctly commons-beanutils (version 1.7.0).
De pages Dependencies/Dependency Tree/Used by doesn't work correctly with the use of a property in a dependency version.
If a go to the link ${version.commons.beanutils}
in de Dependencies/Dependency Tree, I expected to go the page of commons-beanutils/common-beanutils/1.7.0, but I go to the page of commons-beanutils/common-beanutils/$
{version.commons.beanutils}that doesn't exist.