From 1f43be9c912a681a05008117574ecc1473226ffe Mon Sep 17 00:00:00 2001 From: Shagen Ogandzhanian Date: Tue, 25 May 2021 17:40:43 +0200 Subject: [PATCH] Switch to 0.0.0-web-dev-13 in web examples --- examples/falling_balls_with_web/build.gradle.kts | 6 +++--- examples/web_landing/build.gradle.kts | 6 +++--- .../web_landing/gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/falling_balls_with_web/build.gradle.kts b/examples/falling_balls_with_web/build.gradle.kts index 4572cc85af..5255787074 100644 --- a/examples/falling_balls_with_web/build.gradle.kts +++ b/examples/falling_balls_with_web/build.gradle.kts @@ -2,8 +2,8 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat plugins { - id("org.jetbrains.kotlin.multiplatform") version "1.4.32" - id("org.jetbrains.compose") version "0.0.0-web-dev-12" + id("org.jetbrains.kotlin.multiplatform") version "1.5.0" + id("org.jetbrains.compose") version "0.0.0-web-dev-13" } version = "1.0-SNAPSHOT" @@ -30,7 +30,7 @@ kotlin { val commonMain by getting { dependencies { implementation(kotlin("stdlib-common")) - implementation(compose.web.web) + implementation(compose.web.widgets) implementation(compose.runtime) } } diff --git a/examples/web_landing/build.gradle.kts b/examples/web_landing/build.gradle.kts index 3be1e85e8d..ac4865f8b5 100644 --- a/examples/web_landing/build.gradle.kts +++ b/examples/web_landing/build.gradle.kts @@ -1,6 +1,6 @@ plugins { - id("org.jetbrains.kotlin.multiplatform") version "1.4.32" - id("org.jetbrains.compose") version "0.0.0-web-dev-11" + id("org.jetbrains.kotlin.multiplatform") version "1.5.0" + id("org.jetbrains.compose") version "0.0.0-web-dev-13" } repositories { @@ -18,7 +18,7 @@ kotlin { val jsMain by getting { dependencies { implementation(npm("highlight.js", "10.7.2")) - implementation(compose.web.web) + implementation(compose.web.core) implementation(compose.runtime) } } diff --git a/examples/web_landing/gradle/wrapper/gradle-wrapper.properties b/examples/web_landing/gradle/wrapper/gradle-wrapper.properties index da9702f9e7..29e4134576 100644 --- a/examples/web_landing/gradle/wrapper/gradle-wrapper.properties +++ b/examples/web_landing/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists