Vijay Pande wrote:
Hello,
We are using Ivy as our dependency resolver and would like to build our
intranet enterprise Read/Write repository. We provided the user
credentials and host details in ‘settings’ tag in our build file at the
time of loading the ivy-settings. However it seems it is able to
authenticate the user but not able to authorize it. We would like to
form our local enterprise repository from the maven2 repository and
other available repositories. I have attached my build.xml and
ivy-settings.xml for your reference. Kindly help us to resolve the issue.
Guessing (I can't see myRepository.properties), make sure you don't
include the port in the host attribute. e.g.
host="foo:8080"
won't work. You need just host="foo".
Tom