schoppi
(Andreas Schopper)
1
Hello,
I’m using Nexus and I want Gradle to use an user with password for downloading the dependencies.
This is my repository configuration:
repositories {
mavenRepo name: ‘Nexus’, url: “http://$nexusServer:$nexusPort/nexus/content/groups/public” }
How can I apply the credentials?
Regards
Rene
(René Groeschke)
2
Have a look in the gradle userguide at http://gradle.org/docs/current/userguide/dependency_management.html#mavenLikeRepo
there is an example on how to pass credentials to your repository definition
schoppi
(Andreas Schopper)
3
Thanks for the qick response. Now it works!