Nicholas Lenzi created IVY-1583:
-----------------------------------
Summary: Consecutive calls to 'ivy:retrieve' on the same project
does not retrieve all artifacts
Key: IVY-1583
URL: https://issues.apache.org/jira/browse/IVY-1583
Project: Ivy
Issue Type: Bug
Affects Versions: 2.5.0-rc1
Reporter: Nicholas Lenzi
Our group is currently using ivy 2.4.0, and evaluated 2.5.0-rc1.
We were able to work around this issue by modifying the ivy.xml file for all
effected modules. Seems like bug.
Before
{noformat}
<dependencies>
<dependency org="org.slf4j" name="slf4j-api" rev="1.7.25" transitive="false"
conf="compile->default" />
</dependencies>
{noformat}
After
{noformat}
<dependencies>
<dependency org="org.slf4j" name="slf4j-api" rev="1.7.25" transitive="false"
conf="compile->default" >
<artifact name="slf4j-api" type="jar" e:classifier="" />
</dependency>
</dependencies>
{noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)