局域网内使用IntelliJ IDEA无法下载Gradle插件的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了局域网内使用IntelliJ IDEA无法下载Gradle插件的问题相关的知识,希望对你有一定的参考价值。
团队要使用IntelliJ IDEA和Gradle进行开发。
因为在局域网内,必须通过代理访问外网,而IntelliJ IDEA全局配置代理后仍无法下载Gradle插件:
Error:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings either in IDE or Gradle.
提示超时。
后来想到直接把本机的 C:\Users\weiwei\.gradle 文件夹发给同事,问题解决。
注意:
这里只是解决了Gradle的问题,后续需要从往上下载jar包,仍然需要配置代理。
可在项目根目录下新建gradle.properties文件,并在其中配置:
systemProp.http.proxyHost=192.168.51.252 systemProp.http.proxyPort=8080 systemProp.https.proxyHost=192.168.51.252 systemProp.https.proxyPort=8080
即可。
以上是关于局域网内使用IntelliJ IDEA无法下载Gradle插件的问题的主要内容,如果未能解决你的问题,请参考以下文章