From 39d4f5bff3cc3d0ec87745929896658193ddb2ca Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 25 Jul 2023 14:24:09 +0200 Subject: [PATCH] Fix gradle warning: "Project accessors enabled, but root project name not explicitly set for 'plugins'. Checking out the project in different folders will impact the generated code and implicitly the buildscript classpath, breaking caching." --- plugins/settings.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/settings.gradle.kts b/plugins/settings.gradle.kts index defcb6f17b..7e2ce1ea50 100644 --- a/plugins/settings.gradle.kts +++ b/plugins/settings.gradle.kts @@ -14,6 +14,8 @@ * limitations under the License. */ +rootProject.name = "ElementX_plugins" + dependencyResolutionManagement { repositories { mavenCentral()