2021-11-07 11:44:36 +01:00
|
|
|
<?xml version="1.0"?>
|
2021-11-10 01:13:31 +01:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2021-11-07 11:44:36 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-11-10 01:13:31 +01:00
|
|
|
<groupId>it.volvox.service-td</groupId>
|
|
|
|
<artifactId>service-td</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2021-11-07 11:44:36 +01:00
|
|
|
<properties>
|
|
|
|
<compiler-plugin.version>3.8.1</compiler-plugin.version>
|
|
|
|
<maven.compiler.parameters>true</maven.compiler.parameters>
|
2021-12-01 14:23:42 +01:00
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
2021-11-07 11:44:36 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
|
|
|
|
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
|
2021-12-01 14:23:42 +01:00
|
|
|
<quarkus.platform.version>2.5.0.Final</quarkus.platform.version>
|
2021-11-07 11:44:36 +01:00
|
|
|
<surefire-plugin.version>3.0.0-M5</surefire-plugin.version>
|
2021-11-10 01:13:31 +01:00
|
|
|
<volvox.tdlight.version>2.7.9.2</volvox.tdlight.version>
|
|
|
|
<volvox.tdlight.natives.version>4.0.183</volvox.tdlight.natives.version>
|
2021-11-07 11:44:36 +01:00
|
|
|
</properties>
|
2021-11-10 01:13:31 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mchv</id>
|
|
|
|
<name>MCHV Apache Maven Packages</name>
|
|
|
|
<url>https://mvn.mchv.eu/repository/mchv/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2021-11-07 11:44:36 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${quarkus.platform.group-id}</groupId>
|
|
|
|
<artifactId>${quarkus.platform.artifact-id}</artifactId>
|
|
|
|
<version>${quarkus.platform.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2021-11-10 01:13:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-java</artifactId>
|
|
|
|
<version>${volvox.tdlight.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives-linux-amd64</artifactId>
|
|
|
|
<version>${volvox.tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-reactive-pg-client</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-smallrye-openapi</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-hibernate-reactive-panache</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-hibernate-validator</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-arc</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
2021-11-10 01:13:31 +01:00
|
|
|
<artifactId>quarkus-resteasy-reactive</artifactId>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependency>
|
2021-11-10 01:13:31 +01:00
|
|
|
|
2021-11-07 11:44:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-junit5</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.rest-assured</groupId>
|
|
|
|
<artifactId>rest-assured</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-12-01 14:23:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-11-10 01:13:31 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives-linux-amd64</artifactId>
|
|
|
|
</dependency>
|
2021-11-14 13:07:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2021-11-07 11:44:36 +01:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>${quarkus.platform.group-id}</groupId>
|
|
|
|
<artifactId>quarkus-maven-plugin</artifactId>
|
|
|
|
<version>${quarkus.platform.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>build</goal>
|
|
|
|
<goal>generate-code</goal>
|
|
|
|
<goal>generate-code-tests</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<parameters>${maven.compiler.parameters}</parameters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${surefire-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
|
|
|
<maven.home>${maven.home}</maven.home>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>native</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>native</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>${surefire-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
|
|
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
|
|
|
<maven.home>${maven.home}</maven.home>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<properties>
|
|
|
|
<quarkus.package.type>native</quarkus.package.type>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|