aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMargarita Bobova <32216159+woainikk@users.noreply.github.com>2024-01-09 14:40:54 +0100
committerGitHub <noreply@github.com>2024-01-09 14:40:54 +0100
commitd96a9e66d896657ecb49e9f0443a3187dcefbe41 (patch)
treefbd56474c988a6c1d72e26dd4eb7ed5c5ad6c299
parent83a3b98f3f46c4fe618cb2c87f5fd23c9f2fee90 (diff)
downloadkotlinx.atomicfu-d96a9e66d896657ecb49e9f0443a3187dcefbe41.tar.gz
[Kotlin settings, Train]: Put mavenLocal repo after other repos (#392)
-rw-r--r--build.gradle3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index a68cbd7..79e7fb9 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")