Issue Type: Bug Bug
Affects Versions: 1.3.1
Assignee: Unassigned
Created: 03/Sep/12 5:39 AM
Description:

Consider a project with
groupId = test.myGroupId
artifactId = foo

The following dependency range isn't resolved:

        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>bar</artifactId>
            <version>[0.4, 0.5)</version>
            <classifier>sources</classifier>
        </dependency>

Whereas the following dependency range is resolved (${project.groupId} was replaced with its actual value):

        <dependency>
            <groupId>test.myGroupId</groupId>
            <artifactId>someArtifact</artifactId>
            <version>[0.4, 0.5)</version>
            <classifier>sources</classifier>
        </dependency>
Environment: Maven 3.0.4
Project: Maven 2.x Versions Plugin
Priority: Major Major
Reporter: Frédéric Chuong
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to