Drop K/N dependency to JCenter

This commit is contained in:
Vladimir Sukharev
2022-10-31 18:31:36 +01:00
committed by Space Team
parent 2fd8bf9153
commit 44f638e952
20 changed files with 0 additions and 54 deletions
@@ -4,7 +4,6 @@ buildscript {
maven {
url 'https://cache-redirector.jetbrains.com/jcenter'
}
jcenter()
}
}
-2
View File
@@ -26,7 +26,6 @@ buildscript {
repositories {
maven{ url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies" }
mavenCentral()
jcenter()
}
dependencies {
@@ -83,7 +82,6 @@ subprojects { proj ->
} ?: proj.ext["buildNumber"]
proj.buildscript.repositories {
jcenter()
maven {
url proj.ext["bootstrapKotlinRepo"]
}
@@ -22,7 +22,6 @@ buildscript {
repositories {
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies")
jcenter()
mavenCentral()
project.bootstrapKotlinRepo?.let {
maven(url = it)
@@ -47,7 +46,6 @@ plugins {
val cacheRedirectorEnabled = findProperty("cacheRedirectorEnabled")?.toString()?.toBoolean() == true
repositories {
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies")
jcenter()
mavenCentral()
gradlePluginPortal()
extra["bootstrapKotlinRepo"]?.let {
@@ -2,7 +2,6 @@ import java.io.File
pluginManagement {
repositories {
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies")
jcenter()
mavenCentral()
gradlePluginPortal()
}
@@ -6,18 +6,10 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType
buildscript {
ext.rootBuildDirectory = file('../..')
apply from: "$rootProject.projectDir/../gradle/kotlinGradlePlugin.gradle"
repositories {
jcenter()
}
}
apply plugin: 'kotlin-multiplatform'
repositories {
jcenter()
}
def toolsPath = '../../tools'
def frameworkName = 'benchmarksAnalyzer'