I'm new to Ivy and I'm just trying to add a resolver to my ivysettings.xml :
<?xml version="1.0"?>
<ivysettings>
<settings defaultResolver="maven" />
<resolvers>
<chain name="maven" returnFirst="true">
<ibiblio name="restlet" m2compatible="true"
root="http://maven.restlet.org/" />
</chain>
</resolvers>
</ivysettings>
The problem is that once I do that I'm not able to resolve dependencies anywhere else that in the newly added repository.
I would like to keep the defaults resolver and add a new resolver?
How can I tell Ivy to keep looking in it's default repositories?
From the documentation I can read:
Ivy comes with a set of built-in dependency resolvers that handle most common needs.
Fine but where can I get the list of those built in resolvers !?