Ivy can resolve dependencies of dependencies, the documentation says that one can use module configurations to tell ivy that a configuration depends on a given configuration of the dependency.
I want to use htmlunit in a project, in its sourceforge page dependency informations i found dependency settings i translated the maven specifications to ivy:
<dependency org="net.sourceforge.htmlunit" name="htmlunit" rev="2.11"/>
I wrote a test, compiled it, when tried to run it, i had a ClassNotFoundException, i went back again to sourceforge, and looked for informations about dependencies of htmlunit, in this page i found what i looked for, so i thought everything i need is using the magic of module configurations, so i added:
<dependency org="net.sourceforge.htmlunit" name="htmlunit" rev="2.11" conf="test->compile; test->test"/>
but i have this error telling me that the configuration was not found in net.sourceforge.htmlunit#htmlunit;2.11, 'compile'