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

I have installed nexus, and configured my settings.xml to use my local nexus as repository, however, it always tries to fetch artifact from repo1.maven.org fist and then timeout before it goes to fetch from nexus.

share|improve this question

3 Answers

up vote 4 down vote accepted

You need to declare in settings.xml that Nexus is a mirror for the external repos, as documented in the Nexus book (which you should read).

<mirrors>
  <mirror>
    <!--This sends everything else to /public -->
    <id>nexus</id>
    <mirrorOf>*</mirrorOf>
    <url>http://nexushost:8081/nexus/content/groups/public</url>
  </mirror>
</mirrors>
share|improve this answer

We normally declare the repositories in the POM.xml:

<repositories>
    <repository>
        <id>internal</id>
        <url>http://192.168.0.10:8084/nexus/content/repositories/public</url>
    </repository>
    <repository>
    ...

According to the docs, the info in your settings.xml is the "local" repository, meaning the M2_REPO copy in your hard drive. http://maven.apache.org/settings.html

Also, we set up Nexus as a mirror of external repos, thus you only declare these at the Nexus server.

share|improve this answer
1  
I think you are missing the point of the settings.xml. Also, putting repositories in your POM files hurts stability in the long run: the POM will only work as long as you keep the repository at that exact location. And now your POMs are not portable. If you ever rename/renumber/reorganize, all your old POMs break. The set of available repositories for dependency resolution is environment-specific; it should be managed independently from the project definition. – Zac Thompson Jan 14 '11 at 23:34
1  
@Zac: Hm, maybe. But settings.xml is a user settings file, meaning that if I want the whole team working on a project to share this configuration they will all have to replicate these settings. I like people being able to just checkout from version control and be ready to work on the project without needing to configure any personal file if possible. Also, making sure the internal corporate repo URL is stable is easy to guarantee, even if moving locations, if you setup your name servers correctly... Instead of using a fixed IP as I did in the example, use an alias http://nexus-server/... – Carles Barrobés Jan 15 '11 at 20:49
okay. But you'll have to duplicate this information in every single project, and it does constrain the use of the POMs as I described. I prefer to tell developers once: "version control over here, repository manager over here". It's only one extra piece of information; you already have to tell them where to check out from. But you should do whatever works for you. – Zac Thompson Jan 16 '11 at 7:53

In 2.2.1 and 3.0.3 the mirror is ignored in certain cases if you're using the -gs option to override the default and specify a customized global settings file. Make sure, there's a valid settings.xml around in conf.

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.