Skip to content

Commit

Permalink
chore: bump dependencies and java target to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
notmeta committed Aug 5, 2024
1 parent e943ef4 commit 523ebd7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion backend/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
`maven-publish`
kotlin("jvm") version "1.8.0"
kotlin("jvm") version "1.9.24"
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

val javaVersion = JavaVersion.VERSION_11
val javaVersion = JavaVersion.VERSION_17

plugins {
base
kotlin("jvm") version "1.8.0"
kotlin("jvm") version "1.9.24"
}

allprojects {
Expand Down
8 changes: 4 additions & 4 deletions frontend/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.8.0"
id("org.openjfx.javafxplugin") version "0.0.13"
kotlin("jvm") version "1.9.24"
id("org.openjfx.javafxplugin") version "0.1.0"
}

val gprUser: String? = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME") ?: System.getenv("GITHUB_ACTOR")
Expand All @@ -19,15 +19,15 @@ repositories {
dependencies {
implementation(projects.backend)

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
implementation("com.displee:disio:2.2")
implementation("com.displee:rs-cache-library:6.8.1")
implementation("org.fxmisc.richtext:richtextfx:0.10.9")
implementation("com.google.code.gson:gson:2.9.0")
}

javafx {
version = "11"
version = "17"
modules = listOf("javafx.controls", "javafx.fxml")
}

Expand Down

0 comments on commit 523ebd7

Please sign in to comment.