首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Maven 代理网络上载Jar包

2012-09-10 
Maven 代理网络下载Jar包?公司设置了代理上网,maven 下载jar包时报: could not be retrieved from reposit

Maven 代理网络下载Jar包

?公司设置了代理上网,maven 下载jar包时报: 
could not be retrieved from repository: transferring file:central due to an error: Connection timed out: connect 错误。 
解决方案:首先查看IE的代理上网服务器地址。然后修改maven 解压目录的conf下的settings.xml
1.<proxy>  2.     <id>optional</id>       3.     <active>true</active>  4.     <protocol>http</protocol>  5.     <username></username>  6.     <password></password>  7.     <host>172.X.X.X</host>  8.     <port>80</port>  9.     <nonProxyHosts>localhost|127.0.0.1</nonProxyHosts>  10.   </proxy> 

?

热点排行