2021-02-12 22:25:41 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<!-- Please read https://maven.apache.org/guides/introduction/introduction-to-the-pom.html -->
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>tdt4100-v2021</groupId>
|
|
|
|
<artifactId>project</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>15</maven.compiler.source>
|
|
|
|
<maven.compiler.target>15</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- JavaFX -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>16-ea+7</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- FXML -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>16-ea+7</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-17 15:40:50 +01:00
|
|
|
<!-- RichTextFX -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fxmisc.richtext</groupId>
|
|
|
|
<artifactId>richtextfx</artifactId>
|
|
|
|
<version>0.10.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-12 22:25:41 +01:00
|
|
|
<!-- JUnit 5 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.8.0-M1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-17 15:40:50 +01:00
|
|
|
<!-- TestFX -->
|
2021-02-12 22:25:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testfx</groupId>
|
|
|
|
<artifactId>testfx-core</artifactId>
|
|
|
|
<version>4.0.16-alpha</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testfx</groupId>
|
|
|
|
<artifactId>testfx-junit5</artifactId>
|
|
|
|
<version>4.0.16-alpha</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Plugin for maven to compile the project -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<release>15</release>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
<compilerArgs>--enable-previw</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Plugin to test all junit tests with 'surefire:test' -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M5</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgs>--enable-preview</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Plugin for maven to make it easier to run JavaFX from the command line -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>0.0.3</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>app.Main</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|