137 lines
5.4 KiB
XML
137 lines
5.4 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>efi.projekt</groupId>
|
|
<artifactId>Virtueller_Gesundheitsassistent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-controls</artifactId>
|
|
<version>13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>1.2.5</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-web</artifactId>
|
|
<version>21.0.9</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-fxml</artifactId>
|
|
<version>21.0.9</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.websocket</groupId>
|
|
<artifactId>jakarta.websocket-client-api</artifactId>
|
|
<version>2.2.0</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openpnp</groupId>
|
|
<artifactId>opencv</artifactId>
|
|
<version>4.12.0</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial</groupId>
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
<version>3.51.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>5.6.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<version>5.6.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>5.6.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>5.11.0</version>
|
|
<scope>test</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<release>21</release>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.4</version>
|
|
<configuration>
|
|
<mainClass>efi.projekt.virtueller_gesundheitsassistent.App</mainClass>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<!-- Default configuration for running -->
|
|
<!-- Usage: mvn clean javafx:run -->
|
|
<id>default-cli</id>
|
|
</execution>
|
|
<execution>
|
|
<!-- Configuration for manual attach debugging -->
|
|
<!-- Usage: mvn clean javafx:run@debug -->
|
|
<id>debug</id>
|
|
<configuration>
|
|
<options>
|
|
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000</option>
|
|
</options>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<!-- Configuration for automatic IDE debugging -->
|
|
<id>ide-debug</id>
|
|
<configuration>
|
|
<options>
|
|
<option>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</option>
|
|
</options>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<!-- Configuration for automatic IDE profiling -->
|
|
<id>ide-profile</id>
|
|
<configuration>
|
|
<options>
|
|
<option>${profiler.jvmargs.arg1}</option>
|
|
<option>${profiler.jvmargs.arg2}</option>
|
|
<option>${profiler.jvmargs.arg3}</option>
|
|
<option>${profiler.jvmargs.arg4}</option>
|
|
<option>${profiler.jvmargs.arg5}</option>
|
|
</options>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|