From d96a9e66d896657ecb49e9f0443a3187dcefbe41 Mon Sep 17 00:00:00 2001 From: Margarita Bobova <32216159+woainikk@users.noreply.github.com> Date: Tue, 9 Jan 2024 14:40:54 +0100 Subject: [PATCH] [Kotlin settings, Train]: Put mavenLocal repo after other repos (#392) --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index a68cbd74..79e7fb90 100644 --- a/build.gradle +++ b/build.gradle @@ -25,6 +25,7 @@ buildscript { } repositories { maven { url "https://oss.sonatype.org/content/repositories/snapshots" } + mavenLocal() } } @@ -32,6 +33,7 @@ buildscript { mavenCentral() gradlePluginPortal() KotlinConfiguration.addCustomKotlinRepositoryIfEnabled(delegate, project) + mavenLocal() } dependencies { @@ -65,6 +67,7 @@ allprojects { repositories { mavenCentral() KotlinConfiguration.addCustomKotlinRepositoryIfEnabled(delegate, project) + mavenLocal() } def deployVersion = project.findProperty("DeployVersion")