/etc/maven/settings.xml,使用(且仅支持)HTTP代理:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!-- proxies | This is a list of proxies which can be used on this machine to connect to the network. | Unless otherwise specified (by system property or command-line switch), the first proxy | specification in this list marked as active will be used. |--> <proxies> <proxy> <id>optional</id> <active>true</active> <protocol>http</protocol> <username>username</username> <password>password</password> <host>139.*.*.*</host> <port>11443</port> </proxy> </proxies> |