Wizard: change custom maven repositories rendering

This commit is contained in:
Ilya Kirillov
2020-10-12 14:34:32 +03:00
parent 31dac65a39
commit ed924a1c99
83 changed files with 102 additions and 93 deletions
@@ -3,7 +3,7 @@ buildscript {
gradlePluginPortal()
jcenter()
google()
maven('KOTLIN_REPO')
maven { url 'KOTLIN_REPO' }
}
dependencies {
classpath('org.jetbrains.kotlin:kotlin-gradle-plugin:KOTLIN_VERSION')
@@ -18,6 +18,6 @@ allprojects {
repositories {
google()
mavenCentral()
maven('KOTLIN_REPO')
maven { url 'KOTLIN_REPO' }
}
}
@@ -3,7 +3,7 @@ buildscript {
gradlePluginPortal()
jcenter()
google()
maven("KOTLIN_REPO")
maven { url = uri("KOTLIN_REPO") }
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:KOTLIN_VERSION")
@@ -18,6 +18,6 @@ allprojects {
repositories {
google()
mavenCentral()
maven("KOTLIN_REPO")
maven { url = uri("KOTLIN_REPO") }
}
}
@@ -4,7 +4,7 @@ pluginManagement {
jcenter()
gradlePluginPortal()
mavenCentral()
maven('KOTLIN_REPO')
maven { url 'KOTLIN_REPO' }
}
}
@@ -4,7 +4,7 @@ pluginManagement {
jcenter()
gradlePluginPortal()
mavenCentral()
maven("KOTLIN_REPO")
maven { url = uri("KOTLIN_REPO") }
}
}