Gradlew behind a proxy

后端 未结 16 1471
一个人的身影
一个人的身影 2020-12-04 12:26

I have a sample from Gaelyk (called Bloogie) and it is using gradlew.

I am behind a proxy.

I\'ve read gradle docs and found this:

gradle.properties

16条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-04 12:50

    Setting SSl proxy worked for me.

    systemProp.http.proxyHost=proxy.yourproxysite.com
    systemProp.http.proxyPort=8080
    systemProp.https.proxyHost=proxy.yourproxysite.com
    systemProp.https.proxyPort=8080
    

提交回复
热议问题