blob: bac882675e437191a27b8c565dcc37af6376afde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<!-- Defines your source folder -->
<classpathentry kind="src" output="bin/classes" path="src/main/java"/>
<classpathentry kind="src" output="bin/test-classes" path="src/test/java">
<attributes>
<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"/>
<classpathentry kind="lib" path="../lib/junit/junit-platform-console-standalone-6.1.1.jar"/>
<!-- Required OpenJFX JARs explicitly placed on the Modulepath -->
<classpathentry kind="lib" path="../lib/openjfx/javafx.base.jar"/>
<classpathentry kind="lib" path="../lib/openjfx/javafx.controls.jar"/>
<classpathentry kind="lib" path="../lib/openjfx/javafx.graphics.jar"/>
<classpathentry kind="lib" path="../lib/openjfx/javafx.fxml.jar"/>
</classpath>
|