I encounter a problem when I tried to compile the storm-starter project using lein (using Maven internally), because I am behind a fraking proxy. So I add proxy configuration in ~/.m2/settings.xml.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<settings> <proxies> <proxy> <active>true</active> <protocol>http</protocol> <host>host</host> <port>port</port> <username>user</username> <password>password</password> <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts> </proxy> </proxies> </settings> |