This commit is contained in:
name 2021-02-01 20:09:20 +01:00
parent a160d96046
commit 69653e2de9
28 changed files with 312 additions and 44 deletions

14
pom.xml
View file

@ -39,9 +39,11 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<junit.jupiter.version>5.7.0</junit.jupiter.version>
<javafx.version>15</javafx.version>
</properties>
<dependencies>
@ -68,10 +70,14 @@
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.0</version>
<scope>compile</scope>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
</dependencies>