Wizard: simplify custom maven repository syntax for Gradle

This commit is contained in:
Ilya Kirillov
2020-10-10 23:35:31 +03:00
parent 3ef12e32ee
commit d3e99bd7a7
83 changed files with 93 additions and 285 deletions
@@ -3,9 +3,7 @@ buildscript {
gradlePluginPortal()
jcenter()
google()
maven {
url 'KOTLIN_REPO'
}
maven('KOTLIN_REPO')
}
dependencies {
classpath('org.jetbrains.kotlin:kotlin-gradle-plugin:KOTLIN_VERSION')
@@ -22,8 +20,6 @@ allprojects {
repositories {
google()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
maven('KOTLIN_REPO')
}
}
@@ -3,9 +3,7 @@ buildscript {
gradlePluginPortal()
jcenter()
google()
maven {
url = uri("KOTLIN_REPO")
}
maven("KOTLIN_REPO")
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:KOTLIN_VERSION")
@@ -22,8 +20,6 @@ allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
maven("KOTLIN_REPO")
}
}
@@ -4,9 +4,7 @@ pluginManagement {
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
maven('KOTLIN_REPO')
}
}
@@ -4,9 +4,7 @@ pluginManagement {
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
maven("KOTLIN_REPO")
}
}