blob: 7d4bc5c2ad286c7edec9a05c3a1a6b78037a4ebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<!-- Defines your source folder -->
<classpathentry kind="src" output="bin/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="bin/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<!-- Defines the standard Java System Library -->
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<!-- Defines where compiled .class files go -->
<classpathentry kind="output" path="bin"/>
<!-- Required OpenJFX JARs explicitly placed on the Modulepath -->
<classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.base.jar">
<attributes><attribute name="module" value="true"/></attributes>
</classpathentry>
<classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.controls.jar">
<attributes><attribute name="module" value="true"/></attributes>
</classpathentry>
<classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.graphics.jar">
<attributes><attribute name="module" value="true"/></attributes>
</classpathentry>
<classpathentry kind="lib" path="/usr/share/openjfx/lib/javafx.fxml.jar">
<attributes><attribute name="module" value="true"/></attributes>
</classpathentry>
</classpath>
|