Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have Sonatype Nexus running on an internal server, and I would like to use it to proxy repo1.maven.org and other repositories. In Maven I would simply add a <mirror> configuration to settings.xml. How can I do this with Gradle?

Update: I would like to do this without having to hard-code the URL of my Nexus instance into each and every project I have. So I'm looking for an exact replica of the Maven <mirror> setting.

The best I could come up with for now is to do something like this:

repositories {
    maven {
        url "$nexusUrl/content/groups/public"
    }
}

And then have this in ~/.gradle/gradle.properties on each developer's computer:

nexusUrl = https://nexus.company.com

However, this looks hacked, and I still have to add the 5 lines to each project. Is there a more elegant way to do this?

share|improve this question

2 Answers

Init scripts might be the best way to go. Take a look at this chapter in the User Guide.

They provide a way for you to inject logic into all of your projects.

share|improve this answer

As explained in the documentation:

repositories {
    maven {
        url "http://repo.mycompany.com/maven2"
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.