официального веб-сайта ткани, поместил его в Intellij IDEA и с самого начала ждал, пока gradle соберется, но потом получилось следующее:
Код: Выделить всё
Build file 'C:\Users\...\unrelated-1.21.3\build.gradle' line: 2
Plugin [id: 'fabric-loom', version: '1.8-SNAPSHOT'] was not found in any of the following sources:
Я надеялся, что мой проект будет построен, и я смогу начать программировать. Вот часть моего файла build.gradle:
Код: Выделить всё
plugins {
id "fabric-loom" version "1.8-SNAPSHOT"
id "maven-publish"
}
Код: Выделить всё
pluginManagement {
repositories {
maven {
name = "Fabric"
url = "https://maven.fabricmc.net/"
}
mavenCentral()
gradlePluginPortal()
}
}`
Код: Выделить всё
* Exception is:
org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'fabric-loom', version: '1.8-SNAPSHOT'] was not found in any of the following sources:
- Gradle Core Plugins (not a core plugin. For more available plugins, please refer to https://docs.gradle.org/8.10.2/userguide/plugin_reference.html in the Gradle documentation.)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (could not resolve plugin artifact 'fabric-loom:fabric-loom.gradle.plugin:1.8-SNAPSHOT')
Searched in the following repositories:
Fabric(https://maven.fabricmc.net/)
MavenRepo
Gradle Central Plugin Repository
Подробнее здесь: https://stackoverflow.com/questions/792 ... -minecraft