Ant 设置http代理

在编译Harmony的时候,经常需要去fetch依赖,但是服务器本身不能够上外网,因此只能通过代理的方式去下载这些依赖~

 

export ANT_OPTS="-Dhttp.proxyHost=host -Dhttp.proxyPort=port -Dhttp.proxyUserName=username -Dhttp.proxyPassword=password"  

//其中username、password、host、port用具体值替换。当然如果密码有不规则字符要小心,该转义的要转义。
//如果是需要用到https代理的话,需要将上面的-Dhttp改为-Dhttps即可

你可能感兴趣的:(HTTP代理,ant)