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")
}