gradlew wrapper设置代理下载gradle 博客分类: android
程序员文章站
2024-02-21 08:58:22
...
1. HTTP Only Proxy configuration
2. HTTPS Only Proxy configuration
3. Both HTTP and HTTPS Proxy configuration
需要注意的是gradle的下载地址是https的,所以第2和第三种方式才能使用代理下载
同理在{project.dir}\gradle.properties文件中加入下面的代码也能达到同样的目的
引用
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
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