[b]1. HTTP Only Proxy configuration[/b]
[quote]gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128[/quote]
[b]2. HTTPS Only Proxy configuration[/b]
[quote]gradlew -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129[/quote]
[b]3. Both HTTP and HTTPS Proxy configuration[/b]
[quote]gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129[/quote]
[color=red]需要注意的是gradle的下载地址是https的,所以第2和第三种方式才能使用代理下载[/color]
[quote]distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip[/quote]
同理在{project.dir}\gradle.properties文件中加入下面的代码也能达到同样的目的
[quote]systemProp.http.proxyHost=hostname
systemProp.http.proxyPort=8080
systemProp.http.proxyUser=de\\username
systemProp.http.proxyPassword=xxx
systemProp.https.proxyHost=hostname
systemProp.https.proxyPort=8080
systemProp.https.proxyUser=de\\username
systemProp.https.proxyPassword=xxx[/quote]
[quote]gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128[/quote]
[b]2. HTTPS Only Proxy configuration[/b]
[quote]gradlew -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129[/quote]
[b]3. Both HTTP and HTTPS Proxy configuration[/b]
[quote]gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129[/quote]
[color=red]需要注意的是gradle的下载地址是https的,所以第2和第三种方式才能使用代理下载[/color]
[quote]distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip[/quote]
同理在{project.dir}\gradle.properties文件中加入下面的代码也能达到同样的目的
[quote]systemProp.http.proxyHost=hostname
systemProp.http.proxyPort=8080
systemProp.http.proxyUser=de\\username
systemProp.http.proxyPassword=xxx
systemProp.https.proxyHost=hostname
systemProp.https.proxyPort=8080
systemProp.https.proxyUser=de\\username
systemProp.https.proxyPassword=xxx[/quote]
Gradle代理配置
本文介绍如何为Gradle配置HTTP及HTTPS代理,通过设置不同的代理参数实现不同场景下的资源下载需求。包括只配置HTTP代理、只配置HTTPS代理以及同时配置两种代理的方式。
2386

被折叠的 条评论
为什么被折叠?



