[Maven] 启用代理访问

文档说明: Maven 启用代理访问

01. 使用背景

如果公司建立了一个使用HTTP代理服务器来阻止用户直接连接到互联网的防火墙。如果不使用代理,Maven将无法下载任何依赖。 为了使它正常工作,必须将代理服务器声明在 Maven 的配置文件(settings.xml)中.

02. 操作指南

A. Maven 配置文件

找到文件 {MAVEN_HOME}/conf/settings.xml, 并把代理服务器配置信息写入。settings.xml中的原始代理配置信息如下:

注:{MAVEN_HOME}  => D:\software\yiibai.com\apache-maven

<!-- 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
   | Specification for one proxy, to be used in connecting to the network.
   |
  <proxy>
    <id>optional</id>
    <active>true</active>
    <protocol>http</protocol>
    <username>proxyuser</</username>
    <password>proxypass</password>
    <host>proxy.host.net</host>
    <port>80</port>
    <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
  </proxy>
  -->
</proxies>

取消注释代理选项,填写代理服务器的详细信息。

<!-- 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>yiibai</username>
    <password>password</password>
    <host>proxy.yiibai.com</host>
    <port>8888</port>
    <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
  </proxy>
</proxies>

B. 保存配置文件

完成后,Maven 应该是能够通过代理服务器立即连接到Internet。

注意:重新启动不是必需的。Maven 只是一个命令,当你调用它,它会再次读取该文件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值