首页 > 代码库 > 为gradle设置proxy
为gradle设置proxy
官方文档:http://www.gradle.org/docs/current/userguide/build_environment.html
以下配置写在gradle.properties
中:
//以下为http协议proxy配置systemProp.http.proxyHost=www.somehost.org //proxy主机systemProp.http.proxyPort=8080 //proxy端口systemProp.http.proxyUser=userid //proxy权限验证用户,没有就删掉该行systemProp.http.proxyPassword=password //proxy权限验证密码,没有就删掉systemProp.http.nonProxyHosts=*.nonproxyrepos.com|localhost //不使用proxy的域名
//以下为https协议proxy配置,参数作用同http协议systemProp.https.proxyHost=www.somehost.orgsystemProp.https.proxyPort=8080systemProp.https.proxyUser=useridsystemProp.https.proxyPassword=passwordsystemProp.https.nonProxyHosts=*.nonproxyrepos.com|localhost
从文档中我们还得到了一些有用信息,这个配置其实就是对jvm环境变量进行设置,本质上是调用了System.setProperty(‘http.proxyHost‘, ‘www.somehost.org‘)
。。。。。
为gradle设置proxy
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。