2025-03-10 08:38:21 +01: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">
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed</artifactId>
|
|
|
|
|
<version>5.6.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>commafeed-server</artifactId>
|
|
|
|
|
<name>CommaFeed Server</name>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<quarkus.version>3.19.2</quarkus.version>
|
|
|
|
|
<querydsl.version>6.10.1</querydsl.version>
|
|
|
|
|
<rome.version>2.1.0</rome.version>
|
|
|
|
|
<swagger.version>2.2.28</swagger.version>
|
|
|
|
|
|
|
|
|
|
<build.database>h2</build.database>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus.platform</groupId>
|
|
|
|
|
<artifactId>quarkus-bom</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<extensions>
|
|
|
|
|
<extension>
|
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
|
|
|
<version>1.7.1</version>
|
|
|
|
|
</extension>
|
|
|
|
|
</extensions>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
|
|
|
<version>3.5.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>initialize</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>active-profiles</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<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>
|
|
|
|
|
<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>
|
|
|
|
|
-${build.database}-${os.detected.name}-${os.detected.arch}-runner
|
|
|
|
|
</quarkus.package.runner-suffix>
|
|
|
|
|
</properties>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-config-doc-maven-plugin</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default-generate-config-doc</id>
|
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>generate-config-doc</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<format>markdown</format>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
<finalName>commafeed-${project.version}-${build.database}-jvm</finalName>
|
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/assembly/zip-quarkus-app.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>3.5.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<systemPropertyVariables>
|
|
|
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
|
|
|
|
<quarkus.datasource.db-kind>${build.database}</quarkus.datasource.db-kind>
|
|
|
|
|
</systemPropertyVariables>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<version>3.5.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
|
<goal>verify</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<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>
|
|
|
|
|
<quarkus.datasource.db-kind>${build.database}</quarkus.datasource.db-kind>
|
|
|
|
|
</systemPropertyVariables>
|
|
|
|
|
</configuration>
|
|
|
|
|
<!-- 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>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.github.git-commit-id</groupId>
|
|
|
|
|
<artifactId>git-commit-id-maven-plugin</artifactId>
|
|
|
|
|
<version>9.0.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
|
|
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
|
|
|
|
|
</generateGitPropertiesFilename>
|
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
|
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
|
<artifactId>swagger-maven-plugin-jakarta</artifactId>
|
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
|
<?m2e ignore?>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputPath>${project.build.directory}/classes/META-INF/resources</outputPath>
|
|
|
|
|
<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>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>resolve</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
|
<version>3.6.0</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
|
<version>10.21.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<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>
|
|
|
|
|
<version>2.44.3</version>
|
|
|
|
|
<?m2e ignore?>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<java>
|
|
|
|
|
<eclipse>
|
|
|
|
|
<file>${project.basedir}/dev/EclipseCodeFormatter.xml</file>
|
|
|
|
|
</eclipse>
|
|
|
|
|
<importOrder>
|
|
|
|
|
<file>${project.basedir}/dev/eclipse.importorder</file>
|
|
|
|
|
</importOrder>
|
|
|
|
|
</java>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed-client</artifactId>
|
|
|
|
|
<version>5.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- compile-time processors -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.36</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.kohsuke.metainf-services</groupId>
|
|
|
|
|
<artifactId>metainf-services</artifactId>
|
|
|
|
|
<version>1.11</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- quarkus dependencies -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-arc</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-security</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-hibernate-validator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-rest</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-rest-jackson</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-websockets</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-mailer</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-hibernate-orm</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-liquibase</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-json</artifactId>
|
|
|
|
|
<version>4.2.30</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.github.openfeign.querydsl</groupId>
|
|
|
|
|
<artifactId>querydsl-apt</artifactId>
|
|
|
|
|
<version>${querydsl.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<classifier>jakarta</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.github.openfeign.querydsl</groupId>
|
|
|
|
|
<artifactId>querydsl-jpa</artifactId>
|
|
|
|
|
<version>${querydsl.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<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>
|
|
|
|
|
<version>1.6.6</version>
|
|
|
|
|
</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>
|
|
|
|
|
<version>1.19.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ibm.icu</groupId>
|
|
|
|
|
<artifactId>icu4j</artifactId>
|
|
|
|
|
<version>76.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.cssparser</groupId>
|
|
|
|
|
<artifactId>cssparser</artifactId>
|
|
|
|
|
<version>0.9.30</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.netpreserve</groupId>
|
|
|
|
|
<artifactId>urlcanon</artifactId>
|
|
|
|
|
<version>0.4.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
|
<artifactId>httpclient5</artifactId>
|
|
|
|
|
<version>5.4.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- add brotli support for httpclient5 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.brotli</groupId>
|
|
|
|
|
<artifactId>dec</artifactId>
|
|
|
|
|
<version>0.1.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.github.hakky54</groupId>
|
|
|
|
|
<artifactId>sslcontext-kickstart-for-apache5</artifactId>
|
|
|
|
|
<version>9.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- test dependencies -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-junit5-mockito</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
|
<artifactId>mockserver-junit-jupiter</artifactId>
|
|
|
|
|
<version>5.15.0</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.rest-assured</groupId>
|
|
|
|
|
<artifactId>rest-assured</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
|
<artifactId>playwright</artifactId>
|
|
|
|
|
<version>1.50.0</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
|
<version>0.10.2</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>native</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>native</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<quarkus.native.enabled>true</quarkus.native.enabled>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>h2</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.database>h2</build.database>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-h2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>mysql</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.database>mysql</build.database>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-mysql</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>mariadb</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.database>mariadb</build.database>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-mariadb</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>postgresql</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.database>postgresql</build.database>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
|
<artifactId>quarkus-jdbc-postgresql</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
</project>
|