Ошибка загрузки зависимостей Fabric Loom через Gradle: Read timed out
Не могу решить проблему с загрузкой зависимостей Fabric Loom. При сборке проекта получаю ошибки "Read timed out" для всех зависимостей.
Версии:
- Java 17
- Gradle 8.7
- Пытаюсь использовать fabric-loom:1.6-SNAPSHOT
build.gradle:
plugins {
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'maven-publish'
}
settings.gradle:
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
gradlePluginPortal()
}
}
Ошибка:
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'quests_example'.
> Could not resolve all artifacts for configuration ':classpath'.
> Could not download fabric-loom-1.6-SNAPSHOT.jar (net.fabricmc:fabric-loom:1.6-SNAPSHOT:20240602.141023-12)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/fabric-loom/1.6-SNAPSHOT/fabric-loom-1.6-20240602.141023-12.jar'.
> Read timed out
> Could not download stitch-0.6.2.jar (net.fabricmc:stitch:0.6.2)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/stitch/0.6.2/stitch-0.6.2.jar'.
> Read timed out
> Could not download tiny-remapper-0.10.3.jar (net.fabricmc:tiny-remapper:0.10.3)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/tiny-remapper/0.10.3/tiny-remapper-0.10.3.jar'.
> Read timed out
> Could not download asm-commons-9.6.jar (org.ow2.asm:asm-commons:9.6)
> Could not get resource 'https://maven.fabricmc.net/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.jar'.
> Read timed out
> Could not download asm-util-9.6.jar (org.ow2.asm:asm-util:9.6)
> Could not get resource 'https://maven.fabricmc.net/org/ow2/asm/asm-util/9.6/asm-util-9.6.jar'.
> Read timed out
> Could not download asm-analysis-9.6.jar (org.ow2.asm:asm-analysis:9.6)
> Could not get resource 'https://maven.fabricmc.net/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.jar'.
> Read timed out
> Could not download asm-tree-9.6.jar (org.ow2.asm:asm-tree:9.6)
> Could not get resource 'https://maven.fabricmc.net/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.jar'.
> Read timed out
> Could not download asm-9.6.jar (org.ow2.asm:asm:9.6)
> Could not get resource 'https://maven.fabricmc.net/org/ow2/asm/asm/9.6/asm-9.6.jar'.
> Read timed out
> Could not download access-widener-2.1.0.jar (net.fabricmc:access-widener:2.1.0)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/access-widener/2.1.0/access-widener-2.1.0.jar'.
> Read timed out
> Could not download mapping-io-0.5.1.jar (net.fabricmc:mapping-io:0.5.1)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/mapping-io/0.5.1/mapping-io-0.5.1.jar'.
> Read timed out
> Could not download fabric-loom-native-0.2.0.jar (net.fabricmc:fabric-loom-native:0.2.0)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/fabric-loom-native/0.2.0/fabric-loom-native-0.2.0.jar'.
> Read timed out
> Could not download mercury-0.4.1.jar (net.fabricmc:mercury:0.4.1)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/mercury/0.4.1/mercury-0.4.1.jar'.
> Read timed out
> Could not download tiny-mappings-parser-0.3.0+build.17.jar (net.fabricmc:tiny-mappings-parser:0.3.0+build.17)
> Could not get resource 'https://maven.fabricmc.net/net/fabricmc/tiny-mappings-parser/0.3.0+build.17/tiny-mappings-parser-0.3.0+build.17.jar'.
> Read timed out
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.
CONFIGURE FAILED in 6m 22s
Кэш .gradle уже чистил
Проблема сохраняется. Что можно сделать?