Skip to content

Commit

Permalink
Bump the snapshot dependencies to the stable versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Nov 29, 2024
1 parent 0ccb6f5 commit a6ead33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.10"))
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-SNAPSHOT") // TODO 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("org.jetbrains.dokka:dokka-gradle-plugin:2.0.0-Beta")
}
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/VersionsAndDependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import com.huanshankeji.CommonVersions

val projectVersion = "0.5.0-SNAPSHOT"

// TODO don't use a snapshot version in a main branch
val commonVersions = CommonVersions(kotlinCommon = "0.6.0-SNAPSHOT", exposed = "0.56.0")
// don't use a snapshot version in a main branch
val commonVersions = CommonVersions(kotlinCommon = "0.6.0", exposed = "0.56.0")
val commonDependencies = CommonDependencies(commonVersions)
val commonGradleClasspathDependencies = CommonGradleClasspathDependencies(commonVersions)

object DependencyVersions {
val exposedAdtMapping = "0.3.0-SNAPSHOT" // TODO don't use a snapshot version in a main branch
val exposedAdtMapping = "0.3.0" // don't use a snapshot version in a main branch
}

0 comments on commit a6ead33

Please sign in to comment.