Skip to content

Instantly share code, notes, and snippets.

@pedes
Created April 6, 2022 15:53
Show Gist options
  • Save pedes/fc6f9fe9161128eb97a41b405b4ffe12 to your computer and use it in GitHub Desktop.
Save pedes/fc6f9fe9161128eb97a41b405b4ffe12 to your computer and use it in GitHub Desktop.
<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">
<localRepository/>
<interactiveMode/>
<offline/>
<pluginGroups/>
<servers/>
<mirrors/>
<proxies>
<proxy>
<id>example-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.example.com</host>
<port>8080</port>
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>www.google.com|*.example.com</nonProxyHosts>
</proxy>
</proxies>
<profiles/>
<activeProfiles/>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment