Hi, I'm new to Ivy, and I'm trying it out for my project that depends on axis2. As a start, I created this simple Ivy file:
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href=" http://ivyrep.jayasoft.org/ivy-doc.xsl"?> <ivy-module version="2.0"> <info organisation="org" module="test"/> <dependencies> <dependency org="org.apache.axis2" name="axis2" rev="1.4"/> <dependency org="org.apache.axis2" name="axis2-parent" rev="1.4"/> </dependencies> </ivy-module> And executed my ant script that runs the following ivy tasks: <ivy:cleancache /> <!-- Just for testing --> <ivy:retrieve pattern="${lib.dir}/[artifact].[ext]" sync="true"/> When running this, Ivy only downloads the dependencies of axis2, but not axis2 itself. There are no jars named axis-* in the lib directory, only two .pom files (axis2.pom and axis2-parent.pom). Am I doing something wrong here? Thanks! Thomas PS. The detailed output from the ant build can be found here: http://ftp2.bigcat.unimaas.nl/~thomas.kelder/out.txt
