diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 794cb8d..c2ff274 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -18,6 +18,6 @@ dependencies { // With Kotlin 2.0.20, a "Could not parse POM" build error occurs in the JVM projects of some dependent projects. implementation(kotlin("gradle-plugin", "2.1.0")) implementation("com.huanshankeji:common-gradle-dependencies:0.8.0-20241016") // don't use a snapshot version in a main branch - implementation("com.huanshankeji.team:gradle-plugins:0.7.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("org.jetbrains.dokka:dokka-gradle-plugin:2.0.0-Beta") } diff --git a/buildSrc/src/main/kotlin/VersionsAndDependencies.kt b/buildSrc/src/main/kotlin/VersionsAndDependencies.kt index 1aeaaac..7f6ff58 100644 --- a/buildSrc/src/main/kotlin/VersionsAndDependencies.kt +++ b/buildSrc/src/main/kotlin/VersionsAndDependencies.kt @@ -3,5 +3,6 @@ import com.huanshankeji.CommonVersions val projectVersion = "0.3.1-kotlin-2.1.0-SNAPSHOT" -val commonVersions = CommonVersions(kotlinCommon = "0.6.0", exposed = "0.56.0") +// TODO don't use a snapshot version in a main branch +val commonVersions = CommonVersions(kotlinCommon = "0.6.1-kotlin-2.1.0-SNAPSHOT", exposed = "0.56.0") val commonDependencies = CommonDependencies(commonVersions)