#gradle #intellij-idea #plugins
Вопрос:
У меня есть build.gradle
файл со следующей соответствующей конфигурацией:
plugins {
id 'org.jetbrains.intellij' version '1.1.6'
}
Синхронизация Gradle не удается в Intellij Idea со следующей ошибкой:
Gradle sync failed: Plugin [id: 'org.jetbrains.intellij', version: '1.1.6'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'org.jetbrains.intellij:org.jetbrains.intellij.gradle.plugin:1.1.6')
Searched in the following repositories:
Gradle Central Plugin Repository (1 m 39 s 732 ms)
Я часами рыскал по Интернету, чтобы понять, почему это происходит, но безрезультатно. Может кто-нибудь, пожалуйста, помочь мне здесь.
Спасибо!
Ответ №1:
Убедитесь, что у вас есть центральное хранилище Maven, определенное в файле build.gradle
сценария:
repositories {
mavenCentral()
}