Skip to content

Commit 594e592

Browse files
committed
Resolve an error caused strangely by bumping the Gradle wrapper
The error: ```text Execution failed for task ':compose-web-material-gradle-plugins:compileKotlin'. > Could not resolve all files for configuration ':compose-web-material-gradle-plugins:kotlinCompilerPluginClasspathMain'. > Could not find org.jetbrains.kotlin:kotlin-sam-with-receiver-compiler-plugin-embeddable:1.8.20. Searched in the following locations: - https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-sam-with-receiver-compiler-plugin-embeddable/1.8.20/kotlin-sam-with-receiver-compiler-plugin-embeddable-1.8.20.pom Required by: project :compose-web-material-gradle-plugins ```
1 parent 11d8d00 commit 594e592

File tree

4 files changed

+269
-556
lines changed

4 files changed

+269
-556
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Compose for Web Material
1+
# Compose for Web (now Compose HTML) Material
22

33
[![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/compose-web-material)](https://search.maven.org/artifact/com.huanshankeji/compose-web-material)
44
[![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/com.huanshankeji.compose-web-material-conventions)](https://plugins.gradle.org/plugin/com.huanshankeji.compose-web-material-conventions)

buildSrc/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repositories {
77
//maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
88
}
99

10-
val kotlinVersion = "1.8.20"
10+
val kotlinVersion = "1.9.20"
1111
val huanshankejiGradlePluginsVersion = "0.4.1"
1212

1313
dependencies {
1414
implementation(kotlin("gradle-plugin", kotlinVersion))
15-
implementation("org.jetbrains.compose:compose-gradle-plugin:1.4.0")
15+
implementation("org.jetbrains.compose:compose-gradle-plugin:1.5.10")
1616
implementation("com.huanshankeji:kotlin-common-gradle-plugins:$huanshankejiGradlePluginsVersion")
1717
implementation("com.huanshankeji.team:gradle-plugins:$huanshankejiGradlePluginsVersion")
1818
}

compose-web-common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kotlin {
99
sourceSets {
1010
val jsMain by getting {
1111
dependencies {
12-
implementation(compose.web.core)
12+
implementation(compose.html.core)
1313
implementation(compose.runtime)
1414
}
1515
}

0 commit comments

Comments
 (0)