2023-04-26 09:24:42 +02:00
|
|
|
<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">
|
2022-08-13 10:34:59 +02:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed</artifactId>
|
2025-02-23 20:49:01 +01:00
|
|
|
<version>5.6.1</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>commafeed-server</artifactId>
|
|
|
|
|
<name>CommaFeed Server</name>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2025-03-05 19:37:47 +00:00
|
|
|
<quarkus.version>3.19.2</quarkus.version>
|
2024-12-16 00:30:43 +00:00
|
|
|
<querydsl.version>6.10.1</querydsl.version>
|
2023-04-29 09:03:19 +02:00
|
|
|
<rome.version>2.1.0</rome.version>
|
2025-01-16 18:17:44 +00:00
|
|
|
<swagger.version>2.2.28</swagger.version>
|
2024-07-03 00:52:24 +02:00
|
|
|
|
2024-08-18 08:23:30 +02:00
|
|
|
<build.database>h2</build.database>
|
2022-08-13 10:34:59 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus.platform</groupId>
|
|
|
|
|
<artifactId>quarkus-bom</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
2024-08-07 08:10:14 +02:00
|
|
|
<extensions>
|
|
|
|
|
<extension>
|
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
|
|
|
<version>1.7.1</version>
|
|
|
|
|
</extension>
|
|
|
|
|
</extensions>
|
2022-08-13 10:34:59 +02:00
|
|
|
<plugins>
|
2024-08-12 10:25:25 +02:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
2024-10-21 19:53:59 +00:00
|
|
|
<version>3.5.1</version>
|
2024-08-12 10:25:25 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>initialize</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>active-profiles</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2024-09-11 16:35:08 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>properties-maven-plugin</artifactId>
|
|
|
|
|
<version>1.2.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>set-system-properties</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<properties>
|
|
|
|
|
<property>
|
|
|
|
|
<name>quarkus.datasource.db-kind</name>
|
|
|
|
|
<value>${build.database}</value>
|
|
|
|
|
</property>
|
|
|
|
|
</properties>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-08-07 08:10:14 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.quarkus.platform</groupId>
|
|
|
|
|
<artifactId>quarkus-maven-plugin</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>build</goal>
|
|
|
|
|
<goal>generate-code</goal>
|
|
|
|
|
<goal>generate-code-tests</goal>
|
|
|
|
|
<goal>native-image-agent</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<properties>
|
|
|
|
|
<quarkus.package.output-name>commafeed-${project.version}</quarkus.package.output-name>
|
|
|
|
|
<quarkus.package.runner-suffix>
|
2024-08-18 08:23:30 +02:00
|
|
|
-${build.database}-${os.detected.name}-${os.detected.arch}-runner
|
2024-08-07 08:10:14 +02:00
|
|
|
</quarkus.package.runner-suffix>
|
|
|
|
|
</properties>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2024-08-28 18:40:47 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-config-doc-maven-plugin</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2024-12-01 06:04:08 +01:00
|
|
|
<id>default-generate-config-doc</id>
|
2024-08-28 18:40:47 +02:00
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
|
<goals>
|
2024-12-01 06:04:08 +01:00
|
|
|
<goal>generate-config-doc</goal>
|
2024-08-28 18:40:47 +02:00
|
|
|
</goals>
|
2024-12-01 06:04:08 +01:00
|
|
|
<configuration>
|
|
|
|
|
<format>markdown</format>
|
|
|
|
|
</configuration>
|
2024-08-28 18:40:47 +02:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2025-02-22 08:03:01 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
<version>3.5.0</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includePluginDependencies>true</includePluginDependencies>
|
|
|
|
|
<mainClass>com.commafeed.tools.CommaFeedPropertiesGenerator</mainClass>
|
|
|
|
|
<arguments>
|
|
|
|
|
<argument>${project.build.directory}</argument>
|
|
|
|
|
</arguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>java</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2024-08-07 08:10:14 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<version>3.7.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>single</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2024-08-18 08:23:30 +02:00
|
|
|
<finalName>commafeed-${project.version}-${build.database}-jvm</finalName>
|
2024-08-07 08:10:14 +02:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/assembly/zip-quarkus-app.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2023-04-24 23:03:00 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-08-13 10:34:59 +02:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2024-11-02 21:48:13 +00:00
|
|
|
<version>3.5.2</version>
|
2024-08-07 08:10:14 +02:00
|
|
|
<configuration>
|
|
|
|
|
<systemPropertyVariables>
|
|
|
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
2024-09-11 16:49:02 +02:00
|
|
|
<quarkus.datasource.db-kind>${build.database}</quarkus.datasource.db-kind>
|
2024-08-07 08:10:14 +02:00
|
|
|
</systemPropertyVariables>
|
|
|
|
|
</configuration>
|
2022-08-13 10:34:59 +02:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
2024-11-02 20:25:15 +00:00
|
|
|
<version>3.5.2</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
|
<goal>verify</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2024-08-07 08:10:14 +02:00
|
|
|
<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>
|
2024-09-11 16:49:02 +02:00
|
|
|
<quarkus.datasource.db-kind>${build.database}</quarkus.datasource.db-kind>
|
2024-08-07 08:10:14 +02:00
|
|
|
</systemPropertyVariables>
|
|
|
|
|
</configuration>
|
2024-09-13 10:20:19 +02:00
|
|
|
<!-- failsafe plugin does not seem to be able to pick up dependencies declared in profiles -->
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-h2</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-mysql</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-mariadb</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-postgresql</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2022-08-13 10:34:59 +02:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2023-12-17 09:00:56 +01:00
|
|
|
<groupId>io.github.git-commit-id</groupId>
|
|
|
|
|
<artifactId>git-commit-id-maven-plugin</artifactId>
|
2024-07-02 18:02:54 +00:00
|
|
|
<version>9.0.1</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
2024-01-09 14:53:13 +01:00
|
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
2024-07-03 00:52:24 +02:00
|
|
|
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
|
|
|
|
|
</generateGitPropertiesFilename>
|
2022-08-13 10:34:59 +02:00
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
|
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2023-12-17 12:46:44 +01:00
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
2023-12-17 14:11:15 +01:00
|
|
|
<artifactId>swagger-maven-plugin-jakarta</artifactId>
|
2024-08-28 17:36:15 +02:00
|
|
|
<version>${swagger.version}</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<?m2e ignore?>
|
|
|
|
|
<configuration>
|
2024-08-07 08:10:14 +02:00
|
|
|
<outputPath>${project.build.directory}/classes/META-INF/resources</outputPath>
|
2023-12-17 12:46:44 +01:00
|
|
|
<outputFormat>JSONANDYAML</outputFormat>
|
|
|
|
|
<resourcePackages>
|
|
|
|
|
<package>com.commafeed.frontend.resource</package>
|
|
|
|
|
<package>com.commafeed.frontend.model</package>
|
|
|
|
|
<package>com.commafeed.frontend.model.request</package>
|
|
|
|
|
</resourcePackages>
|
|
|
|
|
<prettyPrint>true</prettyPrint>
|
2022-08-13 10:34:59 +02:00
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
2023-12-17 12:46:44 +01:00
|
|
|
<goal>resolve</goal>
|
2022-08-13 10:34:59 +02:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2024-10-25 18:25:58 +00:00
|
|
|
<version>3.6.0</version>
|
2024-08-28 09:20:18 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2025-03-04 13:07:31 +00:00
|
|
|
<version>10.21.4</version>
|
2024-08-28 09:20:18 +02:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2022-08-13 10:34:59 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>validate</id>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
|
<linkXRef>false</linkXRef>
|
|
|
|
|
<sourceDirectories>
|
|
|
|
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
|
|
|
|
</sourceDirectories>
|
|
|
|
|
<testSourceDirectories>
|
|
|
|
|
<testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory>
|
|
|
|
|
</testSourceDirectories>
|
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
|
<configLocation>dev/checkstyle.xml</configLocation>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
|
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
2025-02-21 02:12:51 +00:00
|
|
|
<version>2.44.3</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<?m2e ignore?>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<lineEndings>WINDOWS</lineEndings>
|
|
|
|
|
<java>
|
|
|
|
|
<eclipse>
|
|
|
|
|
<file>${project.basedir}/dev/EclipseCodeFormatter.xml</file>
|
|
|
|
|
</eclipse>
|
2025-03-02 11:37:06 +01:00
|
|
|
<importOrder>
|
|
|
|
|
<file>${project.basedir}/dev/eclipse.importorder</file>
|
|
|
|
|
</importOrder>
|
2022-08-13 10:34:59 +02:00
|
|
|
</java>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed-client</artifactId>
|
2025-02-23 20:49:01 +01:00
|
|
|
<version>5.6.1</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2024-09-13 10:55:02 +02:00
|
|
|
<!-- compile-time processors -->
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2024-11-15 22:09:25 +00:00
|
|
|
<version>1.18.36</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>org.kohsuke.metainf-services</groupId>
|
|
|
|
|
<artifactId>metainf-services</artifactId>
|
|
|
|
|
<version>1.11</version>
|
|
|
|
|
<scope>provided</scope>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
2024-09-13 10:55:02 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
|
2024-09-13 10:55:02 +02:00
|
|
|
<!-- quarkus dependencies -->
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-arc</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-security</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-hibernate-validator</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-rest</artifactId>
|
2024-03-04 21:12:24 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-rest-jackson</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-websockets</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
2024-08-12 09:41:14 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-mailer</artifactId>
|
|
|
|
|
</dependency>
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-hibernate-orm</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-liquibase</artifactId>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-json</artifactId>
|
2025-01-14 20:40:37 +00:00
|
|
|
<version>4.2.30</version>
|
2024-01-15 09:53:52 +01:00
|
|
|
</dependency>
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
2023-12-17 12:46:44 +01:00
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
2022-08-13 10:34:59 +02:00
|
|
|
<artifactId>swagger-annotations</artifactId>
|
2024-08-28 17:36:15 +02:00
|
|
|
<version>${swagger.version}</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-06-10 12:17:11 +02:00
|
|
|
<groupId>io.github.openfeign.querydsl</groupId>
|
2022-08-13 10:34:59 +02:00
|
|
|
<artifactId>querydsl-apt</artifactId>
|
|
|
|
|
<version>${querydsl.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
2023-12-17 14:11:15 +01:00
|
|
|
<classifier>jakarta</classifier>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-06-10 12:17:11 +02:00
|
|
|
<groupId>io.github.openfeign.querydsl</groupId>
|
2022-08-13 10:34:59 +02:00
|
|
|
<artifactId>querydsl-jpa</artifactId>
|
|
|
|
|
<version>${querydsl.version}</version>
|
|
|
|
|
</dependency>
|
2024-08-19 23:55:38 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
|
<version>4.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
|
<version>3.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-jexl</artifactId>
|
|
|
|
|
<version>2.1.1</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.passay</groupId>
|
|
|
|
|
<artifactId>passay</artifactId>
|
2024-10-15 02:21:46 +00:00
|
|
|
<version>1.6.6</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
|
<version>${rome.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
|
<artifactId>rome-modules</artifactId>
|
|
|
|
|
<version>${rome.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
|
<artifactId>rome-opml</artifactId>
|
|
|
|
|
<version>${rome.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.ahocorasick</groupId>
|
|
|
|
|
<artifactId>ahocorasick</artifactId>
|
|
|
|
|
<version>0.6.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
2025-03-04 06:23:04 +00:00
|
|
|
<version>1.19.1</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-09-13 23:40:13 +02:00
|
|
|
<groupId>com.ibm.icu</groupId>
|
|
|
|
|
<artifactId>icu4j</artifactId>
|
2024-10-25 06:17:19 +00:00
|
|
|
<version>76.1</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.cssparser</groupId>
|
|
|
|
|
<artifactId>cssparser</artifactId>
|
2023-04-29 09:03:19 +02:00
|
|
|
<version>0.9.30</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-04-29 09:04:22 +02:00
|
|
|
<groupId>org.netpreserve</groupId>
|
|
|
|
|
<artifactId>urlcanon</artifactId>
|
|
|
|
|
<version>0.4.0</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
2023-12-25 19:41:14 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
|
<artifactId>httpclient5</artifactId>
|
2025-02-02 15:58:59 +01:00
|
|
|
<version>5.4.2</version>
|
2024-08-07 08:10:14 +02:00
|
|
|
</dependency>
|
|
|
|
|
<!-- add brotli support for httpclient5 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.brotli</groupId>
|
|
|
|
|
<artifactId>dec</artifactId>
|
|
|
|
|
<version>0.1.2</version>
|
2023-12-25 19:41:14 +01:00
|
|
|
</dependency>
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.github.hakky54</groupId>
|
2023-12-25 19:41:14 +01:00
|
|
|
<artifactId>sslcontext-kickstart-for-apache5</artifactId>
|
2025-03-05 21:32:08 +00:00
|
|
|
<version>9.1.0</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2024-09-13 10:55:02 +02:00
|
|
|
<!-- test dependencies -->
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<groupId>io.quarkus</groupId>
|
2024-09-04 09:09:28 +02:00
|
|
|
<artifactId>quarkus-junit5-mockito</artifactId>
|
2023-01-27 08:08:50 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-08-13 10:34:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
|
<artifactId>mockserver-junit-jupiter</artifactId>
|
2023-04-29 09:03:19 +02:00
|
|
|
<version>5.15.0</version>
|
2022-08-13 10:34:59 +02:00
|
|
|
<scope>test</scope>
|
2023-12-21 22:15:39 +01:00
|
|
|
</dependency>
|
2024-08-07 08:10:14 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.rest-assured</groupId>
|
|
|
|
|
<artifactId>rest-assured</artifactId>
|
2023-12-21 22:15:39 +01:00
|
|
|
<scope>test</scope>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-08-13 13:00:23 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
|
<artifactId>playwright</artifactId>
|
2025-02-04 22:01:19 +00:00
|
|
|
<version>1.50.0</version>
|
2022-08-13 13:00:23 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-08-16 06:15:52 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
|
<version>0.10.2</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-08-13 10:34:59 +02:00
|
|
|
</dependencies>
|
2024-08-07 08:10:14 +02:00
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>native</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>native</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<quarkus.native.enabled>true</quarkus.native.enabled>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2024-08-12 10:25:25 +02:00
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>h2</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
2024-08-18 08:23:30 +02:00
|
|
|
<properties>
|
|
|
|
|
<build.database>h2</build.database>
|
|
|
|
|
</properties>
|
2024-09-13 10:20:19 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-h2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2024-08-12 10:25:25 +02:00
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>mysql</id>
|
2024-08-18 08:23:30 +02:00
|
|
|
<properties>
|
|
|
|
|
<build.database>mysql</build.database>
|
|
|
|
|
</properties>
|
2024-09-13 10:20:19 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-mysql</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2024-08-12 10:25:25 +02:00
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>mariadb</id>
|
2024-08-18 08:23:30 +02:00
|
|
|
<properties>
|
|
|
|
|
<build.database>mariadb</build.database>
|
|
|
|
|
</properties>
|
2024-09-13 10:20:19 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-mariadb</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2024-08-12 10:25:25 +02:00
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>postgresql</id>
|
2024-08-18 08:23:30 +02:00
|
|
|
<properties>
|
|
|
|
|
<build.database>postgresql</build.database>
|
|
|
|
|
</properties>
|
2024-09-13 10:20:19 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-postgresql</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2024-08-12 10:25:25 +02:00
|
|
|
</profile>
|
2024-08-07 08:10:14 +02:00
|
|
|
</profiles>
|
2023-07-11 08:54:17 +01:00
|
|
|
</project>
|