Move mavenLocal() to the first place

This commit is contained in:
Alexander Dudinsky
2021-09-16 14:15:29 +03:00
committed by Space
parent 7db1b6fe01
commit 064cffc89c
3 changed files with 4 additions and 7 deletions
@@ -1,8 +1,8 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
val kotlin_version: String by settings
plugins {
@@ -1,10 +1,9 @@
buildscript {
repositories {
mavenLocal()
gradlePluginPortal()
jcenter()
google()
mavenCentral()
mavenLocal()
}
dependencies {
classpath(kotlin("gradle-plugin:${property("kotlin_version")}"))
@@ -14,9 +13,8 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
google()
mavenCentral()
}
}
@@ -1,7 +1,6 @@
pluginManagement {
repositories {
google()
jcenter()
gradlePluginPortal()
mavenCentral()
}