Select Git revision
pom.xml 11.67 KiB
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallDesktop</artifactId>
<version>7.0.1</version>
</parent>
<artifactId>PlayWall</artifactId>
<properties>
<project.main>de.tobias.playpad.PlayPadMain</project.main>
<project.iconBase>src/main/resources/icon</project.iconBase>
<launch4j-maven-plugin.version>1.7.25</launch4j-maven-plugin.version>
<appbundle-maven-plugin.version>1.2.0</appbundle-maven-plugin.version>
<project.buildDir>../build/${project.version}</project.buildDir>
<project.jar>${project.buildDir}/${project.artifactId}.jar</project.jar>
<project.exe>${project.buildDir}/${project.artifactId}.exe</project.exe>
<project.app>${project.buildDir}/${project.artifactId}.app</project.app>
<project.zip>${project.buildDir}/${project.artifactId}.zip</project.zip>
</properties>
<dependencies>
<dependency>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallCore</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallComponents</artifactId>
<version>${components.version}</version>
</dependency>
<!--Template parsing-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<!--Testing-->
<dependency>
<groupId>org.testfx</groupId>
<artifactId>testfx-junit</artifactId>
<version>4.0.15-alpha</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testfx</groupId>
<artifactId>openjfx-monocle</artifactId>
<version>8u76-b04</version> <!-- jdk-9+181 for Java 9, jdk-11+26 for Java 11 -->