Skip to content

Instantly share code, notes, and snippets.

@WanghongLin
Created January 8, 2015 13:09
Show Gist options
  • Save WanghongLin/d149dac9b1e0ce87dc43 to your computer and use it in GitHub Desktop.
Save WanghongLin/d149dac9b1e0ce87dc43 to your computer and use it in GitHub Desktop.
m2eclipse proxy setting template
<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
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<proxy>
<id>proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>192.168.1.254</host>
<port>8081</port>
<username></username>
<password></password>
<nonProxyHosts>localhost,127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
<profiles/>
<activeProfiles/>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment