Skip to content

Commit

Permalink
Bump plugin and dependency versions to the latest stable ones
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Mar 15, 2024
1 parent e3338d4 commit 15dc6fd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
14 changes: 4 additions & 10 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,12 @@ repositories {
//maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}

val kotlinVersion = "1.9.20"
val huanshankejiGradlePluginsVersion = "0.4.1"
val huanshankejiGradlePluginsVersion = "0.5.1"

dependencies {
implementation(kotlin("gradle-plugin", kotlinVersion))
implementation("org.jetbrains.compose:compose-gradle-plugin:1.5.10")
implementation(kotlin("gradle-plugin", "1.9.23"))
implementation("org.jetbrains.compose:compose-gradle-plugin:1.6.1")
implementation("com.huanshankeji:kotlin-common-gradle-plugins:$huanshankejiGradlePluginsVersion")
implementation("com.huanshankeji.team:gradle-plugins:$huanshankejiGradlePluginsVersion")
}

configurations.all {
resolutionStrategy {
force("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
implementation("com.huanshankeji:common-gradle-dependencies:0.7.1-20240314")
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.huanshankeji.CommonDependencies

const val projectVersion = "0.2.2-SNAPSHOT"

object DependencyVersions {
Expand All @@ -6,3 +8,5 @@ object DependencyVersions {

val mdc = "13.0.0"
}

val commonDependencies = CommonDependencies()
1 change: 1 addition & 0 deletions compose-web-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ kotlin {
dependencies {
implementation(compose.html.core)
implementation(compose.runtime)
implementation(commonDependencies.kotlinx.coroutines.core())
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions compose-web-material/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ kotlin {
)

implementation(npm("@material/card", DependencyVersions.mdc))

implementation(commonDependencies.kotlinx.coroutines.core())
}
}
}
Expand Down

0 comments on commit 15dc6fd

Please sign in to comment.