From d71ff5f05ab72f1a817f7dc5eebbf8ef0ef75c70 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Thu, 27 Jun 2024 02:50:30 -0300 Subject: [PATCH] buildSrc: Fix strange warning in ci build (mihonapp/mihon#952) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * buildSrc: Fix strange warning ´Project accessors enabled, but root project name not explicitly set for 'buildSrc'. Checking out the project in different folders will impact the generated code and implicitly the buildscript classpath, breaking caching.´ * Update settings.gradle.kts --------- Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> (cherry picked from commit 2674b849746f20c051dab3fd6edfad1594e41b42) --- buildSrc/settings.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildSrc/settings.gradle.kts b/buildSrc/settings.gradle.kts index 1b058e0d8..4e66681d1 100644 --- a/buildSrc/settings.gradle.kts +++ b/buildSrc/settings.gradle.kts @@ -14,3 +14,5 @@ dependencyResolutionManagement { } } } + +rootProject.name = "komikku-buildSrc"