Skip to content

Commit

Permalink
Bump our dependencies the latest snapshots using Kotlin 2.1.0, and th…
Browse files Browse the repository at this point in the history
…e project version to be specific about Kotlin 2.1.0
  • Loading branch information
ShreckYe committed Dec 2, 2024
1 parent f105d22 commit 79bdc16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ repositories {

dependencies {
// With Kotlin 2.0.20, a "Could not parse POM" build error occurs in the JVM projects of some dependent projects.
val kotlinVersion = "2.0.10"
val kotlinVersion = "2.1.0"
implementation(kotlin("gradle-plugin", kotlinVersion))
implementation("org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlinVersion")
implementation("org.jetbrains.compose:compose-gradle-plugin:1.7.0")
implementation("com.huanshankeji.team:gradle-plugins:0.6.0") // don't use a snapshot version in a main branch
implementation("com.huanshankeji.team:gradle-plugins:0.7.1-kotlin-2.1.0-SNAPSHOT") // TODO don't use a snapshot version in a main branch
implementation("com.android.tools.build:gradle:8.5.2")
implementation("com.huanshankeji:common-gradle-dependencies:0.8.0-20241016") // don't use a snapshot version in a main branch
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/VersionsAndDependencies.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import com.huanshankeji.CommonDependencies
import org.jetbrains.compose.ComposeBuildConfig

val projectVersion = "0.5.0-SNAPSHOT"
val projectVersion = "0.5.0-kotlin-2.1.0-SNAPSHOT"

val commonDependencies = CommonDependencies()

object DependencyVersions {
const val composeMultiplatform = ComposeBuildConfig.composeVersion // for "ui-unit"
val kobweb = "0.19.2"
val huanshankejiComposeHtml = "0.4.0" // don't use a snapshot version in a main branch
val huanshankejiComposeHtml = "0.4.1-kotlin-2.1.0-SNAPSHOT" // TODO don't use a snapshot version in a main branch
val kmdc = "0.1.2"
val materialSymbols = "0.25.1"
}

0 comments on commit 79bdc16

Please sign in to comment.