From b9f15d0d7b087dd8b34b1b7506b4c8c5e9cc829c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geir=20Andr=C3=A9=20Lund?= Date: Tue, 6 Aug 2019 16:15:05 +0200 Subject: [PATCH] Fixes annoying gradle idea plugin bug. The idea gradle plugin expects unique root project name for buildSrc in gradle composite builds https://github.com/gradle/gradle/issues/8920 [skip ci] --- buildSrc/settings.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildSrc/settings.gradle.kts b/buildSrc/settings.gradle.kts index e69de29b..9c2bbbf6 100644 --- a/buildSrc/settings.gradle.kts +++ b/buildSrc/settings.gradle.kts @@ -0,0 +1,6 @@ +/* +Fixes annoying gradle idea plugin bug. The idea gradle plugin expects unique root project name for buildSrc in gradle composite builds +https://github.com/gradle/gradle/issues/8920 + */ + +rootProject.name = rootProject.projectDir.parentFile.name + "-buildSrc" \ No newline at end of file