2024-03-11 11:08:46 +00:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
2024-04-10 14:03:19 +00:00
|
|
|
<name>NHPlus</name>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-03-11 11:08:46 +00:00
|
|
|
<groupId>de.hitec</groupId>
|
2024-04-29 16:14:01 +00:00
|
|
|
<artifactId>nhplus</artifactId>
|
|
|
|
<description>A School Project</description>
|
2024-04-10 14:03:19 +00:00
|
|
|
<version>1.0.0</version>
|
2024-03-11 11:08:46 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<junit.version>5.10.0</junit.version>
|
2024-04-10 14:03:19 +00:00
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
2024-03-11 11:08:46 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>20.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>20.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.controlsfx</groupId>
|
|
|
|
<artifactId>controlsfx</artifactId>
|
|
|
|
<version>11.1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.44.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>2.0.9</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- SLF4J Log4j Implementation -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>2.0.9</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2024-04-10 14:03:19 +00:00
|
|
|
<!-- Compiler Plugin -->
|
2024-03-11 11:08:46 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.11.0</version>
|
|
|
|
<configuration>
|
2024-04-10 14:03:19 +00:00
|
|
|
<source>21</source>
|
|
|
|
<target>21</target>
|
2024-03-11 11:08:46 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-04-10 14:03:19 +00:00
|
|
|
<!-- Java FX Plugin -->
|
2024-03-11 11:08:46 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>0.0.8</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<!-- Default configuration for running with: mvn clean javafx:run -->
|
|
|
|
<id>default-cli</id>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>de.hitec.nhplus/de.hitec.nhplus.Main</mainClass>
|
|
|
|
<launcher>app</launcher>
|
|
|
|
<jlinkZipName>app</jlinkZipName>
|
|
|
|
<jlinkImageName>app</jlinkImageName>
|
|
|
|
<noManPages>true</noManPages>
|
|
|
|
<stripDebug>true</stripDebug>
|
|
|
|
<noHeaderFiles>true</noHeaderFiles>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-04-10 15:02:55 +00:00
|
|
|
<!-- Checkstyle Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<failOnViolation>true</failOnViolation>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<sourceDirectories>src</sourceDirectories>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-04-29 16:14:01 +00:00
|
|
|
<!-- Javadoc Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<sourcepath>src/main/java</sourcepath>
|
|
|
|
<destDir>javadoc_build</destDir>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-03-11 11:08:46 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-04-10 14:03:19 +00:00
|
|
|
</project>
|