107 lines
3.1 KiB
XML
107 lines
3.1 KiB
XML
<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>
|
|
|
|
<!-- RichTextFX -->
|
|
<dependency>
|
|
<groupId>org.fxmisc.richtext</groupId>
|
|
<artifactId>richtextfx</artifactId>
|
|
<version>0.10.5</version>
|
|
</dependency>
|
|
|
|
<!-- Guava Eventbus -->
|
|
<dependency>
|
|
<groupId>org.sonatype.nexus</groupId>
|
|
<artifactId>google-guava-eventbus</artifactId>
|
|
<version>3.2.0-01</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- JUnit 5 -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>5.8.0-M1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- TestFX -->
|
|
<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>
|
|
<arg>--enable-preview</arg>
|
|
</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>
|
|
<argLine>--enable-preview</argLine>
|
|
</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>
|