gradlew wrapper设置代理下载gradle

1. HTTP Only Proxy configuration
引用
gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128


2. HTTPS Only Proxy configuration
引用
gradlew -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129


3. Both HTTP and HTTPS Proxy configuration
引用
gradlew -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129


需要注意的是gradle的下载地址是https的,所以第2和第三种方式才能使用代理下载

引用
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip


同理在{project.dir}\gradle.properties文件中加入下面的代码也能达到同样的目的

引用
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

猜你喜欢

转载自dengyin2000.iteye.com/blog/2187268