Hi! I have the following ivy.xml,
<ivy-module version="1.0"> <info organisation="dummy" module="dummy" /> <configurations defaultconfmapping="default"> <conf name="compile" /> <conf name="runtime" extends="compile" /> </configurations> <dependencies> <dependency org="org.apache.struts" name="struts2-core" rev="2.0.8" conf="compile" /> <dependency org="org.springframework" name="spring-dao" rev="2.0.6" conf="compile" /> <dependency org="org.springframework" name="spring-hibernate3" rev="2.0.6" conf="compile" /> <dependency org="org.hibernate" name="hibernate-annotations" rev="3.3.0.ga" conf="compile" /> </dependencies> </ivy-module> When run, I don't see any error and the dependencies seem to be successfully resolved. However, there is no JAR loaded in the Ivy's cache. There are only 2 files found in .ivy\cache\org.springframework\spring-hibernate3: ivy-2.0.6.xml, ivydata-2.0.6.properties Note: I have jta.jar saved at .ivy\shared\javax.transaction\jta\1.0.1B\jars. Any idea? I'm curious if you will encounter the same problem? -- Hez
