On 3/6/07, steve neo <[EMAIL PROTECTED]> wrote:
In my ivy.xml, I declared a dependency:
<dependency org="org/springframework" name="cs" rev="2.0.2"
conf="default" />
In cs-2.0.2-ivy.xml file, it has artifact named "spring"
<info organisation="org/springframework" module="cs"
revision="2.0.2" status="release"/>
<configurations>
<conf name="default"/>
</configurations>
<publications>
<artifact name="spring" type="jar" conf="default"/>
</publications>
So, I hope ivy could download
http://www.ibiblio.org/maven2/org/springframework/spring-2.0.2.jar.
But in reality,
ivy tried
http://www.ibiblio.org/maven2/org/springframework/cs/2.0.2/cs-2.0.2.jar.
Do I have any misunderanding in ivy configure file <info> module
attribute? Will it be replaced by <artifact>?
I think your understanding is good, the problem might come from a cached ivy
file for cs with bad information. Check your cache, or set
checkModified="true" while your testing your setup.
HTH,
- Xavier