简体   繁体   中英

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

  • socks
  • socks5
  • SOCKS_5
  • SOCKSv5

Regs, Gerd

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM