Gerd Aschemann
Gerd Aschemann

Reputation: 504

Maven - how to set socks proxy via settings.xml

I wonder how I could set a SOCKS proxy for maven via the ~/.m2/settings.xml? Yes, I know there is a recipe to do this via MAVEN_OPTS environment variable. But I would like to set this in the settings.xml within the <proxies> section. Which kind of protocol should I use? I already tried

Regs, Gerd

Upvotes: 6

Views: 8613

Answers (1)

Shawn Chang
Shawn Chang

Reputation: 79

This is my setting, and it worked fine for me,hope useful:

<proxy>
        <id>ss</id>
        <active>true</active>
        <protocol>socks5</protocol>
        <username></username>
        <password></password>
        <host>127.0.0.1</host>
        <port>1080</port>
        <nonProxyHosts>127.0.0.1</nonProxyHosts>
</proxy>

Upvotes: 5

Related Questions