I use maven to build projects and it gets stuck at ftp.cica.es/mirrors/maven2 repository. What is the way around it?
|
If you or co-developers in the same office are re-building the same projects often, then you'll do yourself a big favour by installing a maven repository manager such as Nexus. See the nexus setup steps this post. |
|||
|
|
|
http://ftp.cica.es/mirrors/maven2 is actually a mirror of the central repository and you very likely have a snippet like this in your
If this mirror is down, remove the above snippet and just use the central repository (or another mirror). But at the time of writing this, it seems to just work fine. |
|||
|
|
|
Maven has an option for offline build. But the dependencies that were not already downloaded for your project will not be available and hence your build will fail.
The second option is to remove that repository from your pom.xml and add an alternate one where your dependencies are available |
|||
|
|