diff options
Diffstat (limited to 'build-logic/settings.gradle.kts')
-rw-r--r-- | build-logic/settings.gradle.kts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/build-logic/settings.gradle.kts b/build-logic/settings.gradle.kts new file mode 100644 index 00000000..55dfe5c1 --- /dev/null +++ b/build-logic/settings.gradle.kts @@ -0,0 +1,17 @@ +rootProject.name = "build-logic" + +pluginManagement { + repositories { + gradlePluginPortal() + mavenCentral() + } +} + +@Suppress("UnstableApiUsage") +dependencyResolutionManagement { + repositories { + mavenCentral() + google() + gradlePluginPortal() + } +} |