From 1df1246573576875edb96db335c04862d328beea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Mon, 3 Apr 2023 14:17:34 +0200 Subject: [PATCH] code-samples: add suggested Gradle plugin setup for kotlin_demo --- code_samples/kotlin_demo/settings.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code_samples/kotlin_demo/settings.gradle.kts b/code_samples/kotlin_demo/settings.gradle.kts index 82b6b2103..c7b5d303d 100644 --- a/code_samples/kotlin_demo/settings.gradle.kts +++ b/code_samples/kotlin_demo/settings.gradle.kts @@ -1,3 +1,9 @@ -// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +pluginManagement { + repositories { + mavenCentral() + gradlePluginPortal() + } +} rootProject.name = "kotlin_demo"