欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

maven download jar Could not transfer artifact

程序员文章站 2022-05-03 19:41:38
原因: 公司电脑使用代理上网,下载jar包时没有使用ie代理。   解决方法: settings.xml配置一下 [html] 

原因:
公司电脑使用代理上网,下载jar包时没有使用ie代理。
 
解决方法:
settings.xml配置一下
[html] 
<proxy> 
        <id>optional</id> 
        <active>true</active> 
        <protocol>http</protocol> 
        <host>192.168.7.17</host> 
        <port>8081</port> 
</proxy> 

host为maven私服的ip地址
port为私服的访问端口