136 lines
4.7 KiB
XML
136 lines
4.7 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<groupId>de.selfomat</groupId>
|
|
<artifactId>selfomat-single-user</artifactId>
|
|
<version>0.4.2.0-SNAPSHOT</version>
|
|
|
|
<scm>
|
|
<url>scm:git:http://192.168.100.78/git/selfomat-software.git</url>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<!-- Publish the versioned releases here -->
|
|
<repository>
|
|
<id>repo</id>
|
|
<name>My maven2 repository</name>
|
|
<url>dav:http://software:release@cloud.selfom.at/remote.php/webdav/00-SELFOMAT-Releases</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-jpeg -->
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>imageio-jpeg</artifactId>
|
|
<version>3.2.1</version>
|
|
</dependency>
|
|
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.junit.jupiter</groupId>-->
|
|
<!--<artifactId>junit-jupiter-api</artifactId>-->
|
|
<!--<version>5.0.0-M4</version>-->
|
|
<!--<scope>test</scope>-->
|
|
<!--</dependency>-->
|
|
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.junit.jupiter</groupId>-->
|
|
<!--<artifactId>junit-jupiter-engine</artifactId>-->
|
|
<!--<version>5.0.0-M4</version>-->
|
|
<!--<scope>test</scope>-->
|
|
<!--</dependency>-->
|
|
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.junit.platform</groupId>-->
|
|
<!--<artifactId>junit-platform-runner</artifactId>-->
|
|
<!--<version>1.1.0-M2</version>-->
|
|
<!--<scope>test</scope>-->
|
|
<!--</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.loadui</groupId>
|
|
<artifactId>testFx</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
<!--<dependency>-->
|
|
<!--<groupId>junit</groupId>-->
|
|
<!--<artifactId>junit</artifactId>-->
|
|
<!--<version>RELEASE</version>-->
|
|
<!--</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.platform</groupId>
|
|
<artifactId>junit-platform-runner</artifactId>
|
|
<version>${junit.platform.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<name>selfomat single user</name>
|
|
<description>Photobooth Software</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>1.8</java.version>
|
|
<junit.jupiter.version>5.0.0-M4</junit.jupiter.version>
|
|
<junit.platform.version>1.0.0-M4</junit.platform.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>Start</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>Start</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|
|
|