summaryrefslogtreecommitdiffstats
path: root/modules/ui-desktop/.classpath
diff options
context:
space:
mode:
authorKostya <mail@sartin.in>2026-08-09 14:46:25 +0300
committerKostya <mail@sartin.in>2026-08-09 14:46:25 +0300
commit34deee1c5ef2df5ba2514f77ec4dfd4a684a9d13 (patch)
tree17d9c867856ff9f1de4a59f63c13d6abf0ecb31e /modules/ui-desktop/.classpath
parent18a9b6e4f3c9f7e034a0c174a5e2cd6c043ee169 (diff)
downloadguess-market-34deee1c5ef2df5ba2514f77ec4dfd4a684a9d13.tar.gz
guess-market-34deee1c5ef2df5ba2514f77ec4dfd4a684a9d13.tar.xz
guess-market-34deee1c5ef2df5ba2514f77ec4dfd4a684a9d13.zip
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.
Diffstat (limited to 'modules/ui-desktop/.classpath')
-rw-r--r--modules/ui-desktop/.classpath34
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/ui-desktop/.classpath b/modules/ui-desktop/.classpath
deleted file mode 100644
index 7d4bc5c..0000000
--- a/modules/ui-desktop/.classpath
+++ /dev/null
@@ -1,34 +0,0 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<classpath>
3 <!-- Defines your source folder -->
4 <classpathentry kind="src" output="bin/classes" path="src/main/java">
5 <attributes>
6 <attribute name="optional" value="true"/>
7 </attributes>
8 </classpathentry>
9 <classpathentry kind="src" output="bin/test-classes" path="src/test/java">
10 <attributes>
11 <attribute name="optional" value="true"/>
12 <attribute name="test" value="true"/>
13 </attributes>
14 </classpathentry>
15 <!-- Defines the standard Java System Library -->
16 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
17 <!-- Defines where compiled .class files go -->
18 <classpathentry kind="output" path="bin"/>
19
20 <!-- Required OpenJFX JARs explicitly placed on the Modulepath -->
21 <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.base.jar">
22 <attributes><attribute name="module" value="true"/></attributes>
23 </classpathentry>
24 <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.controls.jar">
25 <attributes><attribute name="module" value="true"/></attributes>
26 </classpathentry>
27 <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.graphics.jar">
28 <attributes><attribute name="module" value="true"/></attributes>
29 </classpathentry>
30 <classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.fxml.jar">
31 <attributes><attribute name="module" value="true"/></attributes>
32 </classpathentry>
33</classpath>
34