Skip to content

Commit a62f8df

Browse files
committed
Merge branch 'kotlin-2.1.0-gradlew-v8.11.1-and-above' into dependent-on-snapshots
2 parents eaab148 + 23b4cf1 commit a62f8df

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

buildSrc/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
repositories {
6-
//mavenLocal() // comment out when not needed
6+
mavenLocal() // TODO comment out when not needed so the build is always reproducible by others
77
gradlePluginPortal()
88
google()
99
mavenCentral()
@@ -14,7 +14,7 @@ dependencies {
1414
implementation(kotlin("gradle-plugin", kotlinVersion))
1515
implementation("org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlinVersion")
1616
implementation("org.jetbrains.compose:compose-gradle-plugin:1.7.1")
17-
implementation("com.huanshankeji.team:gradle-plugins:0.6.0") // don't use a snapshot version in a main branch
17+
implementation("com.huanshankeji.team:gradle-plugins:0.8.0") // don't use a snapshot version in a main branch
1818
implementation("com.android.tools.build:gradle:8.5.2")
1919
implementation("com.huanshankeji:common-gradle-dependencies:0.8.0-20241016") // don't use a snapshot version in a main branch
2020
}

buildSrc/src/main/kotlin/VersionsAndDependencies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ val commonDependencies = CommonDependencies()
88
object DependencyVersions {
99
const val composeMultiplatform = ComposeBuildConfig.composeVersion // for "ui-unit"
1010
val kobweb = "0.19.2"
11-
val huanshankejiComposeHtml = "0.4.0" // don't use a snapshot version in a main branch
11+
val huanshankejiComposeHtml = "0.4.1-SNAPSHOT" // TODO don't use a snapshot version in a main branch
1212
val kmdc = "0.1.2"
1313
val materialSymbols = "0.25.1"
1414
}

buildSrc/src/main/kotlin/common-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
repositories {
11-
//mavenLocal() // commented out so the build is always reproducible by others // put back if needed when depending on a snapshot
11+
mavenLocal() // TODO comment out when not needed so the build is always reproducible by others
1212
mavenCentral()
1313
google()
1414
maven("https://us-central1-maven.pkg.dev/varabyte-repos/public") // for Kobweb

0 commit comments

Comments
 (0)