I have a project that I am implementing Ivy within, but it is not pulling down one dependency during an ivy:retrieve command.
ivy.xml exceprt:
<dependency org="com.sun.jersey.contribs" name="maven-wadl-plugin" rev="1.12" conf="support->default" >
<!-- artifact name="maven-wadl-plugin" type="jar" /-->
<exclude org="junit" module="junit" />
<exclude org="org.apache.maven" module="apache-maven" />
<exclude org="org.apache.maven" module="maven-artifact" />
<exclude org="org.apache.maven" module="maven-plugin-api" />
<exclude org="xerces" module="xercesImpl" />
</dependency>
I have tried with and without the 'excludes' to ensure I am not missing something, but when I remove the excludes it downloads more jars than are needed.
I use the maven-wadl-plugin.jar to generate a WADL for a rest application. I am just unsure exactly what is missing here but I have a feeling like there something very complex in the maven-wadl-plugin pom.xml and configurations.
Thanks for any help you can provide.