Search code examples
mavenmaven-2

Maven - Is it possible to specify mirror in pom.xml?


Is it possible to specify mirror in pom.xml ? For example I am want to make one my own repo like central repo. And I want disable requests to the central repo and make all requests to my own repo. Is it possible to disable default central repo in Maven?


Solution

  • In the pom it's not possible to define mirror entries furthermore it would be bad practice if definition of mirrors were possible (which is not the case). Similar for repositories definition in pom's (which are possible, but considered bad practice).

    Best solution for such kind of thing is to install a repository manager which acts like a "own central repository."