Skip to content

Commit

Permalink
upgrade to kotlin 2.0.21 and coroutines 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bekiroguz committed Jan 23, 2025
1 parent c2098a7 commit c4b4d50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ lazy val `baker-interface-kotlin`: Project = project.in(file("core/baker-interfa
.settings(Publish.settings)
.settings(
moduleName := "baker-interface-kotlin",
kotlinVersion := "1.8.21",
kotlinVersion := "2.0.21",
kotlincJvmTarget := "17",
kotlinLib("stdlib-jdk8"),
kotlinLib("reflect"),
Expand Down Expand Up @@ -309,7 +309,7 @@ lazy val `baker-recipe-dsl-kotlin`: Project = project.in(file("core/recipe-dsl-k
.settings(Publish.settings)
.settings(
moduleName := "baker-recipe-dsl-kotlin",
kotlinVersion := "1.8.21",
kotlinVersion := "2.0.21",
kotlincJvmTarget := "17",
kotlinLib("stdlib-jdk8"),
kotlinLib("reflect"),
Expand All @@ -334,7 +334,7 @@ lazy val `baker-recipe-compiler`: Project = project.in(file("core/recipe-compile
.settings(Publish.settings)
.settings(
moduleName := "baker-compiler",
kotlinVersion := "1.8.21",
kotlinVersion := "2.0.21",
kotlincJvmTarget := "17",
libraryDependencies ++=
testDeps(scalaTest, scalaCheck, junitJupiter)
Expand Down Expand Up @@ -703,7 +703,7 @@ lazy val `docs-code-snippets`: Project = project
.settings(crossBuildSettings)
.settings(
moduleName := "docs-code-snippets",
kotlinVersion := "1.8.21",
kotlinVersion := "2.0.21",
kotlincJvmTarget := "17",
kotlinLib("stdlib-jdk8"),
kotlinLib("reflect"),
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ object Dependencies {

val guava = "com.google.guava" % "guava" % "33.4.0-jre"

val kotlinXCoroutinesCore = "org.jetbrains.kotlinx" % "kotlinx-coroutines-core" % "1.7.3" pomOnly()
val kotlinXCoroutinesJdk8 = "org.jetbrains.kotlinx" % "kotlinx-coroutines-jdk8" % "1.7.3"
val kotlinXCoroutinesCore = "org.jetbrains.kotlinx" % "kotlinx-coroutines-core" % "1.9.0" pomOnly()
val kotlinXCoroutinesJdk8 = "org.jetbrains.kotlinx" % "kotlinx-coroutines-jdk8" % "1.9.0"

def scopeDeps(scope: String, modules: Seq[ModuleID]) = modules.map(m => m % scope)

Expand Down

0 comments on commit c4b4d50

Please sign in to comment.