From 34deee1c5ef2df5ba2514f77ec4dfd4a684a9d13 Mon Sep 17 00:00:00 2001 From: Kostya Date: Sun, 9 Aug 2026 14:46:25 +0300 Subject: flatten modules to repo root, vendor deps, repair Eclipse build paths Move api, engine, ui-console and ui-desktop out of modules/ up to the repo root and drop the empty exception project (GuessMarketException now lives in api). Vendor gson, jaxb, okhttp, openjfx and tomcat under lib/, and group the JUnit standalone jar into lib/junit/ alongside them. Rewrite every .classpath: drop the copy-pasted optional="true" that was masking real build path errors, point the library entries at ../lib/, and put the JUnit jar on the test source folders so the placeholder AppTest classes compile. ui-desktop: take the JavaFX jars off the modulepath (there is no module-info.java, so module="true" left the packages unresolvable) and add a Launcher that calls Application.launch, avoiding the "JavaFX runtime components are missing" check without VM arguments. engine: add LocalGuessMarketService and the GuessMarketContext provider interface, and give GuessMarketException the no-arg and cause constructors they need. --- lib/openjfx/javafx-swt.jar | Bin 0 -> 37082 bytes lib/openjfx/javafx.base.jar | Bin 0 -> 756514 bytes lib/openjfx/javafx.controls.jar | Bin 0 -> 2597140 bytes lib/openjfx/javafx.fxml.jar | Bin 0 -> 130169 bytes lib/openjfx/javafx.graphics.jar | Bin 0 -> 4303293 bytes lib/openjfx/javafx.media.jar | Bin 0 -> 277400 bytes lib/openjfx/javafx.properties | 3 +++ lib/openjfx/javafx.swing.jar | Bin 0 -> 90416 bytes lib/openjfx/javafx.web.jar | Bin 0 -> 716847 bytes 9 files changed, 3 insertions(+) create mode 100644 lib/openjfx/javafx-swt.jar create mode 100644 lib/openjfx/javafx.base.jar create mode 100644 lib/openjfx/javafx.controls.jar create mode 100644 lib/openjfx/javafx.fxml.jar create mode 100644 lib/openjfx/javafx.graphics.jar create mode 100644 lib/openjfx/javafx.media.jar create mode 100644 lib/openjfx/javafx.properties create mode 100644 lib/openjfx/javafx.swing.jar create mode 100644 lib/openjfx/javafx.web.jar (limited to 'lib/openjfx') diff --git a/lib/openjfx/javafx-swt.jar b/lib/openjfx/javafx-swt.jar new file mode 100644 index 0000000..26a972f Binary files /dev/null and b/lib/openjfx/javafx-swt.jar differ diff --git a/lib/openjfx/javafx.base.jar b/lib/openjfx/javafx.base.jar new file mode 100644 index 0000000..855e125 Binary files /dev/null and b/lib/openjfx/javafx.base.jar differ diff --git a/lib/openjfx/javafx.controls.jar b/lib/openjfx/javafx.controls.jar new file mode 100644 index 0000000..a0c2d31 Binary files /dev/null and b/lib/openjfx/javafx.controls.jar differ diff --git a/lib/openjfx/javafx.fxml.jar b/lib/openjfx/javafx.fxml.jar new file mode 100644 index 0000000..c3b66e5 Binary files /dev/null and b/lib/openjfx/javafx.fxml.jar differ diff --git a/lib/openjfx/javafx.graphics.jar b/lib/openjfx/javafx.graphics.jar new file mode 100644 index 0000000..945b80f Binary files /dev/null and b/lib/openjfx/javafx.graphics.jar differ diff --git a/lib/openjfx/javafx.media.jar b/lib/openjfx/javafx.media.jar new file mode 100644 index 0000000..584a9d2 Binary files /dev/null and b/lib/openjfx/javafx.media.jar differ diff --git a/lib/openjfx/javafx.properties b/lib/openjfx/javafx.properties new file mode 100644 index 0000000..bfea014 --- /dev/null +++ b/lib/openjfx/javafx.properties @@ -0,0 +1,3 @@ +javafx.version=22.0.2 +javafx.runtime.version=22.0.2+4 +javafx.runtime.build=4 diff --git a/lib/openjfx/javafx.swing.jar b/lib/openjfx/javafx.swing.jar new file mode 100644 index 0000000..8f033f1 Binary files /dev/null and b/lib/openjfx/javafx.swing.jar differ diff --git a/lib/openjfx/javafx.web.jar b/lib/openjfx/javafx.web.jar new file mode 100644 index 0000000..2f49524 Binary files /dev/null and b/lib/openjfx/javafx.web.jar differ -- cgit v1.2.3