Gradle 配置代理
背景
用 gradle 构建经常失败,主要是国内网络的原因,这时候配置 gradle 使用代理,构建过程要轻松许多
做法
JVM system properties
例如:
System.setProperty(‘http.proxyHost’, ‘www.somehost.org‘)配置 gradle.properties
1 | ## http |
用 gradle 构建经常失败,主要是国内网络的原因,这时候配置 gradle 使用代理,构建过程要轻松许多
JVM system properties
例如:
System.setProperty(‘http.proxyHost’, ‘www.somehost.org‘)
配置 gradle.properties
1 | ## http |