Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Upgrade Java, Kotlin and Arrow versions
Browse files Browse the repository at this point in the history
  • Loading branch information
agile-jordi committed Apr 28, 2023
1 parent 9b4a554 commit 2b913f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import Dependencies.kotlinXSerializationJson
import Dependencies.postgresql

plugins {
kotlin("jvm") version "1.8.10"
kotlin("jvm") version "1.8.21"
application
}

java { toolchain { languageVersion.set(JavaLanguageVersion.of(8)) } }
java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } }

repositories {
mavenCentral()
Expand All @@ -25,7 +25,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
}

kotlin {
jvmToolchain(11)
jvmToolchain(17)
}

application {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Dependencies {

val arrowKt = "io.arrow-kt"
val arrowVersion = "2.0.0-SNAPSHOT"
val arrowVersion = "1.1.6-alpha.57"
val arrowCore = "$arrowKt:arrow-core:$arrowVersion"
val arrowFxCoroutines = "$arrowKt:arrow-fx-coroutines:$arrowVersion"
val arrowFxStm = "$arrowKt:arrow-fx-stm:$arrowVersion"
Expand Down

0 comments on commit 2b913f2

Please sign in to comment.