Update to 0.4.0-build182 and get rid of jcenter

The build `0.4.0-build182` upgrades
`kotlinx-collections-immutable` library
(which is used by the compose runtime) to 0.3.4,
which was published to maven central,
so most usages of sunsetting jcenter repo
can be removed now.

Resolves #557
This commit is contained in:
Alexey Tsvetkov
2021-04-02 06:47:37 +03:00
parent 8040ca67e1
commit 8c8b4147ab
30 changed files with 40 additions and 55 deletions

View File

@@ -9,18 +9,17 @@ plugins {
id("org.jetbrains.compose") version "0.2.0-build132"
// __KOTLIN_COMPOSE_VERSION__
kotlin("plugin.allopen") version "1.4.20"
id("kotlinx.benchmark") version "0.2.0-dev-20"
id("kotlinx.benchmark") version "0.3.0"
}
repositories {
jcenter()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://dl.bintray.com/kotlin/kotlinx")
}
dependencies {
implementation(compose.desktop.currentOs)
implementation("org.jetbrains.kotlinx:kotlinx.benchmark.runtime:0.2.0-dev-20")
implementation("org.jetbrains.kotlinx:kotlinx.benchmark.runtime:0.3.0")
}
configure<AllOpenExtension> {

View File

@@ -2,6 +2,6 @@ pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://dl.bintray.com/kotlin/kotlinx")
mavenCentral()
}
}