我想通过grails 3.1.5
gradle依赖关系解析从Maven获取jar依赖关系。如何增加gradle获取maven依赖所需的超时时间。当然,我已经看到依赖关系需要很长时间才能下载。但是如何配置gradle等待更长时间才能下载依赖
答案 0 :(得分:17)
此功能已在Gradle中添加: https://github.com/gradle/gradle/pull/3041
您可以使用2个属性增加超时:
./gradlew build -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000
如Sue C评论,如果您使用的是gradle 4.10.2或更高版本,请使用以下properties:
./gradlew build -Dorg.gradle.internal.http.socketTimeout=60000 -Dorg.gradle.internal.http.connectionTimeout=60000