Replace, where possible in tests, jcenter() with mavenCentral().

In few places I have to leave bintray repository due to not all kotlin
dependencies where migrated to maven central.

^KT-44949 In progress
This commit is contained in:
Yahor Berdnikau
2021-02-26 17:11:24 +01:00
committed by TeamCityServer
parent 7d766add4b
commit 24ba581910
165 changed files with 255 additions and 222 deletions
@@ -1078,7 +1078,7 @@ class KotlinGradleIT : BaseGradleIT() {
build(
":lib1:compileDebugUnitTestKotlin",
options = defaultBuildOptions().copy(
androidGradlePluginVersion = AGPVersion.v3_2_0,
androidGradlePluginVersion = AGPVersion.v3_6_0,
androidHome = KtTestUtil.findAndroidSdk(),
),
) {
@@ -123,7 +123,10 @@ class MultiplatformGradleIT : BaseGradleIT() {
File(projectDir, "$subDirectory/build.gradle").modify {
"""
buildscript {
repositories { mavenLocal(); jcenter() }
repositories {
mavenLocal();
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${'$'}kotlin_version"
}
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
@@ -36,7 +37,8 @@ android {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -14,7 +15,8 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -4,7 +4,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
@@ -17,6 +18,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -4,7 +4,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
@@ -17,6 +18,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -3,7 +3,7 @@ buildscript {
mavenLocal()
maven { url 'https://maven.google.com' }
mavenCentral()
jcenter()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -14,6 +15,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -40,7 +41,8 @@ android {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -5,7 +5,7 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -17,6 +17,6 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
}
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -13,7 +14,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
apply plugin: 'com.android.library'
@@ -4,7 +4,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
@@ -17,6 +18,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -1,8 +1,9 @@
buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
google()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -13,7 +14,8 @@ buildscript {
allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
google()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -8,7 +8,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { setUrl("https://dl.bintray.com/kotlin/kotlinx.html/") }
}
@@ -5,7 +5,7 @@ enableFeaturePreview("GRADLE_METADATA")
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -12,7 +12,7 @@ apply plugin: 'kotlin-multiplatform'
repositories {
mavenLocal()
jcenter()
mavenCentral()
// NB: Build of this module depends on 'sample-lib' publication. You need to add the local
// repository where 'sample-lib' artifacts are published.
}
@@ -8,7 +8,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { setUrl("https://dl.bintray.com/kotlin/kotlinx.html/") }
}
@@ -5,7 +5,7 @@ enableFeaturePreview("GRADLE_METADATA")
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -4,7 +4,7 @@ version '1.0'
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -15,7 +15,7 @@ apply plugin: 'kotlin-multiplatform'
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlinx.html/" }
}
@@ -8,7 +8,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -9,7 +9,7 @@ repositories {
val thirdPartyRepo: String by project
maven(thirdPartyRepo)
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -6,6 +6,6 @@ allprojects {
repositories {
mavenLocal()
maven("$rootDir/../repo")
jcenter()
mavenCentral()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.app"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.bar"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.foo"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.thirdparty"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
maven("../repo")
jcenter()
mavenCentral()
}
group = "com.example.app"
@@ -6,7 +6,7 @@ plugins {
repositories {
mavenLocal()
maven("../repo")
jcenter()
mavenCentral()
}
group = "com.example.bar"
@@ -6,7 +6,7 @@ plugins {
repositories {
mavenLocal()
maven("../repo")
jcenter()
mavenCentral()
}
group = "com.example.foo"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.thirdparty"
@@ -5,6 +5,6 @@ plugins {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.app"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.foo"
@@ -6,7 +6,7 @@ plugins {
repositories {
mavenLocal()
maven("../repo")
jcenter()
mavenCentral()
}
group = "com.example.foo"
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.thirdparty"
@@ -3,7 +3,6 @@ plugins {
}
repositories {
jcenter()
mavenLocal()
mavenCentral()
}
@@ -5,9 +5,8 @@ plugins {
}
repositories {
jcenter()
mavenCentral()
mavenLocal()
mavenCentral()
}
kotlin.js {
@@ -7,7 +7,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -7,7 +7,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -5,7 +5,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = "com.example.thirdparty"
@@ -2,7 +2,7 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -14,6 +14,6 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
}
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -14,6 +15,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -6,7 +6,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -21,6 +22,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -6,7 +6,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -21,7 +22,8 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
if (VersionNumber.parse(android_tools_version) >= VersionNumber.parse("3.3.0")) {
@@ -2,7 +2,7 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -14,7 +14,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
@@ -2,7 +2,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -14,6 +15,7 @@ subprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -4,7 +4,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -2,7 +2,7 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -13,7 +13,7 @@ apply plugin: "kotlin-kapt"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -2,7 +2,7 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -37,7 +37,7 @@ android {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -13,7 +13,7 @@ apply plugin: 'kotlin-kapt'
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -2,7 +2,7 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -14,6 +14,6 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -10,7 +10,7 @@ buildscript {
allprojects {
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -12,7 +12,7 @@ buildscript {
subprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
jcenter()
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -10,8 +10,8 @@ buildscript {
allprojects {
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -13,8 +13,8 @@ apply plugin: "kotlin"
apply plugin: "kotlin-kapt"
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven {
url "https://jetbrains.bintray.com/intellij-third-party-dependencies/"
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -13,8 +13,8 @@ apply plugin: "kotlin"
apply plugin: "kotlin-kapt"
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven {
url "https://jetbrains.bintray.com/intellij-third-party-dependencies/"
}
@@ -3,7 +3,8 @@ buildscript {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -15,6 +16,7 @@ allprojects {
repositories {
mavenLocal()
maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -8,6 +8,6 @@ version = "1.0"
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -8,6 +8,6 @@ version = "1.0"
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -8,7 +8,7 @@ dependencies {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -9,7 +9,8 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
kotlin.sourceSets {
@@ -7,7 +7,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
rootProject.plugins.withType(org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin::class.java) {
@@ -5,6 +5,6 @@ plugins {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -8,7 +8,7 @@ pluginManagement {
}
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -11,6 +11,6 @@ buildscript {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -2,8 +2,8 @@ buildscript {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_tools_version"
@@ -15,6 +15,7 @@ allprojects {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -12,6 +12,6 @@ buildscript {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -5,7 +5,8 @@ buildscript {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -16,7 +17,8 @@ buildscript {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
maven { url = uri("https://jcenter.bintray.com/") }
}
kotlin {
@@ -35,7 +37,7 @@ allprojects {
repositories {
mavenLocal()
google()
jcenter()
mavenCentral()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -12,6 +12,6 @@ buildscript {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
@@ -12,6 +12,6 @@ buildscript {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -11,6 +11,6 @@ buildscript {
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { setUrl(rootProject.projectDir.resolve("repo")) }
}
@@ -8,7 +8,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { setUrl(rootProject.projectDir.resolve("repo")) }
}
@@ -8,7 +8,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { setUrl(rootProject.projectDir.resolve("repo")) }
}
@@ -8,7 +8,7 @@ version = "1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
val disambiguation1Attribute = Attribute.of("myDisambiguation1Attribute", String::class.java)
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -12,7 +12,7 @@ apply plugin: 'kotlin-multiplatform'
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { setUrl("https://dl.bintray.com/kotlin/kotlinx.html/") }
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {
@@ -1,7 +1,7 @@
pluginManagement {
repositories {
mavenLocal()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
@@ -4,7 +4,7 @@ plugins {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
kotlin {

Some files were not shown because too many files have changed in this diff Show More