From 3c7b0e6ccccd601610f988e7a1f829d754ae0d23 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 1 Nov 2019 19:04:25 +0300 Subject: [PATCH] Fix gradle runtime dependency issue for completion-ranking-kotlin library Execution failed for task ':idea:idea-test-framework:test'. > Could not resolve all files for configuration ':idea:idea-test-framework:testRuntimeClasspath'. > Could not find org.jetbrains.intellij.deps.completion:completion-ranking-kotlin:0.0.2. ... Required by: project :idea:idea-test-framework > project :idea It looks like when resolving this dependency gradle doesn't check the list of repositories in :idea module. --- build.gradle.kts | 1 + idea/build.gradle.kts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 3e41edc4d42..169681ad3b1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -324,6 +324,7 @@ allprojects { maven(intellijRepo) maven("https://dl.bintray.com/kotlin/ktor") maven("https://kotlin.bintray.com/kotlin-dependencies") + maven("https://jetbrains.bintray.com/intellij-third-party-dependencies") bootstrapKotlinRepo?.let(::maven) internalKotlinRepo?.let(::maven) } diff --git a/idea/build.gradle.kts b/idea/build.gradle.kts index ea4a5443ae6..97e312df69e 100644 --- a/idea/build.gradle.kts +++ b/idea/build.gradle.kts @@ -5,7 +5,6 @@ plugins { repositories { maven("https://jetbrains.bintray.com/markdown") - maven("https://jetbrains.bintray.com/intellij-third-party-dependencies") } sourceSets {