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