How to disable maven blocking external HTTP repositores?
7
Maven blocks external HTTP repositories by default since version 3.8.1 (see https://maven.apache.org/docs/3.8.1/release-notes.html)
Is there a way to disable that or to exempt a repository from this rule?
maven maven-3
<mirrorOf>*</mirrorOf>
and redirect to your internal repository manager? – khmarbaise Apr 8 at 11:40mirrorOf
, I could not distinguish between repositories, e.g. one for each snapshot and release. Or could I? – Sebu Apr 8 at 11:58settings.xml
in.mvn
better use a config file provider plugin (Jenkins) to handle that incl. credentials.... Never allow repos being defined in a pom file... – khmarbaise Apr 8 at 12:09