gui updates

This commit is contained in:
2025-10-01 14:42:41 -04:00
parent 3fbc82fa94
commit 8b4803ac14
16 changed files with 64 additions and 2 deletions

View File

@@ -9,8 +9,12 @@
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
group = 'lodge'
version = '1.0'
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
@@ -42,10 +46,20 @@ repositories {
fileTree(dir:'libs', include:'*.jar')
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
//https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.13.2'
implementation 'org.openjfx:javafx-base:24.0.1'
implementation 'org.openjfx:javafx-fxml:24.0.1'
implementation 'org.openjfx:javafx-controls:24.0.1'
implementation 'org.openjfx:javafx-graphics:24.0.1'
implementation 'org.openjfx:javafx-web:24.0.1'
}
jar {