A point raised by a user of Ivy:
http://mail-archives.apache.org/mod_mbox/ant-ivy-user/200908.mbox/%3ca0b0f63671be56498793255905162b5db2e...@dc1.fal.local%3e
Which also point to these
https://issues.apache.org/jira/browse/IVY-325
https://issues.apache.org/jira/browse/IVY-1003

The problem is about retrieving transitively sources of some artifact on the 
maven repo. Today Ivy is generating things like :
<publications>
    <artifact name="commons-validator" type="jar" ext="jar" conf="master"/>
    <artifact name="commons-validator" type="source" ext="jar" conf="sources" 
m:classifier="sources"/>
</publications>

So when resolving the conf "master", we cannot get the sources. IvyDE work 
around this by looking to every declared artifact, but with ant we cannot.
Shouldn't we better generate:
<publications>
    <artifact name="commons-validator" type="jar" ext="jar" conf="master"/>
    <artifact name="commons-validator" type="source" ext="jar" 
conf="master,sources" m:classifier="sources"/>
</publications>

Is there any reason not to do so ?

Nicolas

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org
For additional commands, e-mail: dev-h...@ant.apache.org

Reply via email to