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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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).
|
|||
|
|
|
We normally declare the repositories in the POM.xml:
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. |
|||||||||||
|
|
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. |
|||
|
|