Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
Downgraded tot Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
MartenBE committed Oct 7, 2024
1 parent 59305e8 commit adf1598
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ repositories {

dependencies {
implementation "com.h2database:h2:2.3.232"
implementation "org.openjfx:javafx-controls:22"
implementation "org.openjfx:javafx-controls:21"
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
languageVersion = JavaLanguageVersion.of(21)
}
}

javafx {
version = "22"
version = "21"
modules = [ "javafx.controls" ]
}

Expand Down

0 comments on commit adf1598

Please sign in to comment.