31 lines
966 B
XML
31 lines
966 B
XML
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
|
|
<mirrors>
|
|
<!-- Use standard central, bypass custom broken mirrors -->
|
|
<mirror>
|
|
<id>maven-central-mirror</id>
|
|
<mirrorOf>*</mirrorOf>
|
|
<name>Maven Central</name>
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
</mirror>
|
|
</mirrors>
|
|
<proxies>
|
|
<proxy>
|
|
<id>http-proxy</id>
|
|
<active>true</active>
|
|
<protocol>http</protocol>
|
|
<host>127.0.0.1</host>
|
|
<port>7897</port>
|
|
<nonProxyHosts>localhost|127.0.0.1</nonProxyHosts>
|
|
</proxy>
|
|
<proxy>
|
|
<id>https-proxy</id>
|
|
<active>true</active>
|
|
<protocol>https</protocol>
|
|
<host>127.0.0.1</host>
|
|
<port>7897</port>
|
|
<nonProxyHosts>localhost|127.0.0.1</nonProxyHosts>
|
|
</proxy>
|
|
</proxies>
|
|
</settings>
|