From afabd1c2b767bf7feb7eb5664d8d62ddc5d8ae27 Mon Sep 17 00:00:00 2001 From: Margarita Bobova Date: Tue, 29 Aug 2023 17:14:29 +0200 Subject: [PATCH] [Kotlin settings, Train]: Put mavenLocal repo after other repos --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 1d986dbb..2b4d90d5 100644 --- a/build.gradle +++ b/build.gradle @@ -24,6 +24,7 @@ buildscript { } repositories { maven { url "https://oss.sonatype.org/content/repositories/snapshots" } + mavenLocal() } } @@ -31,6 +32,7 @@ buildscript { mavenCentral() gradlePluginPortal() KotlinConfiguration.addCustomKotlinRepositoryIfEnabled(delegate, project) + mavenLocal() } dependencies { @@ -64,6 +66,7 @@ allprojects { repositories { mavenCentral() KotlinConfiguration.addCustomKotlinRepositoryIfEnabled(delegate, project) + mavenLocal() } def deployVersion = project.findProperty("DeployVersion")