Создавая плагин Intellij, Gradle не может найти org.jetbrains.intellij - PullRequest
0 голосов
/ 06 сентября 2018

Я пытаюсь создать плагин для intellij, используя gradle, я следовал руководству по jetbrains: https://www.jetbrains.org/intellij/sdk/docs/tutorials/build_system/prerequisites.html

и я получаю следующую ошибку:

Plugin [id: 'org.jetbrains.intellij', version: '0.3.9'] 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:0.3.9')
  Searched in the following repositories:
    Gradle Central Plugin Repository

Взглянув на файл сборки gradle, есть следующие строки:

plugins {
    id 'java'
    id 'org.jetbrains.intellij' version '0.3.9'
}

Как узнать, какая у меня версия org.jetbrains.intellij? Как мне получить 0.3.9?

Моя версия intellij: 2018.2.2 Community

...