diff --git a/dependencies/kotlin-build-gradle-plugin/src/Bootstrap.kt b/dependencies/kotlin-build-gradle-plugin/src/Bootstrap.kt index c2095727db0..f5485a21fe3 100644 --- a/dependencies/kotlin-build-gradle-plugin/src/Bootstrap.kt +++ b/dependencies/kotlin-build-gradle-plugin/src/Bootstrap.kt @@ -69,9 +69,9 @@ sealed class BootstrapOption { class BintrayDev(kotlinVersion: String, cacheRedirector: Boolean = false) : Custom(kotlinVersion, "https://dl.bintray.com/kotlin/kotlin-dev", cacheRedirector) - /** Get bootstrap from kotlin-bootstrap bintray repo, where bootstraps are published */ + /** Get bootstrap from kotlin bootstrap space repo, where bootstraps are published */ class BintrayBootstrap(kotlinVersion: String, cacheRedirector: Boolean = false) : - Custom(kotlinVersion, "https://dl.bintray.com/kotlin/kotlin-bootstrap", cacheRedirector) + Custom(kotlinVersion, "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap", cacheRedirector) /** Get bootstrap from teamcity maven artifacts of the specified build configuration * diff --git a/gradle/cacheRedirector.gradle.kts b/gradle/cacheRedirector.gradle.kts index 074d210743d..5424a71d4a4 100644 --- a/gradle/cacheRedirector.gradle.kts +++ b/gradle/cacheRedirector.gradle.kts @@ -51,6 +51,9 @@ val mirroredUrls = listOf( "https://jetbrains.bintray.com/test-discovery", "https://jetbrains.bintray.com/wormhole", "https://jitpack.io", + "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev", + "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap", + "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/eap", "https://kotlin.bintray.com/dukat", "https://kotlin.bintray.com/kotlin-dependencies", "https://oss.sonatype.org/content/repositories/releases",