Wizard: move common repositories to the allprojects section

This commit is contained in:
Ilya Kirillov
2020-10-10 15:43:19 +03:00
parent e824199169
commit fa8951c19e
79 changed files with 178 additions and 255 deletions
@@ -7,16 +7,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
implementation 'com.google.android.material:material:1.2.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
@@ -7,16 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
implementation("com.google.android.material:material:1.2.0")
implementation("androidx.appcompat:appcompat:1.2.0")
@@ -16,9 +16,14 @@ buildscript {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
allprojects {
repositories {
google()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
}
@@ -16,9 +16,14 @@ buildscript {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
}
@@ -1,9 +1,9 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,9 +1,9 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
implementation project(':b')
implementation project(':c')
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
implementation(project(":b"))
implementation(project(":c"))
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
implementation project(':c')
implementation project(':d')
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
implementation(project(":c"))
implementation(project(":d"))
@@ -1,9 +1,13 @@
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
allprojects {
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
}
@@ -1,9 +1,13 @@
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
allprojects {
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
}
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
}
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
testImplementation(kotlin("test-junit"))
}
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
implementation project(':a')
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
implementation(project(":a"))
testImplementation(kotlin("test-junit"))
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
rootProject
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
rootProject
testImplementation(kotlin("test-junit"))
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
implementation project(':b')
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
implementation(project(":b"))
testImplementation(kotlin("test-junit"))
@@ -5,13 +5,6 @@ plugins {
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
}
@@ -7,13 +7,6 @@ plugins {
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
testImplementation(kotlin("test-junit"))
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -6,8 +6,8 @@ group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -6,8 +6,8 @@ group = "me.user"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -9,19 +9,19 @@ group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven {
url 'https://dl.bintray.com/kotlin/ktor'
}
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
maven {
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
}
maven {
url 'https://dl.bintray.com/kotlin/kotlinx'
}
maven {
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
url 'https://dl.bintray.com/kotlin/ktor'
}
}
@@ -9,19 +9,19 @@ group = "me.user"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
maven {
url = uri("https://dl.bintray.com/kotlin/ktor")
}
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-js-wrappers")
}
maven {
url = uri("https://dl.bintray.com/kotlin/kotlinx")
}
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-js-wrappers")
url = uri("https://dl.bintray.com/kotlin/ktor")
}
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -7,16 +7,6 @@ plugins {
group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
dependencies {
implementation project(':shared')
implementation 'com.google.android.material:material:1.2.0'
@@ -7,16 +7,6 @@ plugins {
group = "me.user"
version = "1.0-SNAPSHOT"
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
dependencies {
implementation(project(":shared"))
implementation("com.google.android.material:material:1.2.0")
@@ -16,9 +16,14 @@ buildscript {
group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'KOTLIN_REPO'
allprojects {
repositories {
google()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
}
@@ -16,9 +16,14 @@ buildscript {
group = "me.user"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
}
@@ -1,9 +1,9 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,9 +1,9 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -9,16 +9,6 @@ plugins {
group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
}
kotlin {
android()
ios {
@@ -9,16 +9,6 @@ plugins {
group = "me.user"
version = "1.0-SNAPSHOT"
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
}
kotlin {
android()
ios {
@@ -8,9 +8,7 @@ group = 'me.user'
version = '1.0-SNAPSHOT'
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url 'KOTLIN_REPO'
@@ -8,9 +8,7 @@ group = "me.user"
version = "1.0-SNAPSHOT"
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
@@ -1,9 +1,9 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,9 +1,9 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
jcenter()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url 'KOTLIN_REPO'
}
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("KOTLIN_REPO")
}