2022-01-12 17:39:22 +03:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-05-11 12:59:34 +03: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-01-12 17:39:22 +03:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2022-01-12 17:40:24 +03:00
|
|
|
|
<groupId>dev.struchkov.haiti.filter</groupId>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
<artifactId>haiti-filter-quarkus-reactive</artifactId>
|
2024-03-13 13:28:38 +03:00
|
|
|
|
<version>1.4.0</version>
|
2022-01-12 17:40:24 +03:00
|
|
|
|
<packaging>jar</packaging>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
|
|
|
|
|
<name>Haiti Filter Reactive Quarkus</name>
|
|
|
|
|
<description>JOOQ based filtering module</description>
|
|
|
|
|
<url>https://github.com/haiti-projects/haiti-filter-reactive-quarkus</url>
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>BSD 3-Clause License</name>
|
2022-01-12 17:44:55 +03:00
|
|
|
|
<url>https://raw.githubusercontent.com/haiti-projects/haiti-filter-reactive-quarkus/master/LICENSE</url>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
2022-02-10 23:24:26 +03:00
|
|
|
|
<issueManagement>
|
|
|
|
|
<system>GitHub</system>
|
|
|
|
|
<url>https://github.com/haiti-projects/haiti-filter-reactive-quarkus/issues</url>
|
|
|
|
|
</issueManagement>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
|
|
|
|
|
<properties>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<java.version>17</java.version>
|
2022-02-10 23:24:26 +03:00
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
|
2024-02-19 11:24:08 +03:00
|
|
|
|
<quarkus.platform.version>3.4.3</quarkus.platform.version>
|
2024-03-13 13:27:39 +03:00
|
|
|
|
<haiti.filter.jooq.version>1.2.4</haiti.filter.jooq.version>
|
2023-05-17 23:09:17 +03:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
|
|
|
|
|
<postgresql.ver>42.6.0</postgresql.ver>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
|
|
|
|
|
<jetbrains.annotations.ver>24.0.1</jetbrains.annotations.ver>
|
2022-01-12 17:40:24 +03:00
|
|
|
|
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
|
|
|
|
|
<plugin.maven.compiler.ver>3.11.0</plugin.maven.compiler.ver>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin -->
|
|
|
|
|
<plugin.nexus.staging.ver>1.6.13</plugin.nexus.staging.ver>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
|
2022-01-12 17:40:24 +03:00
|
|
|
|
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
|
|
|
|
|
<plugin.maven.javadoc.ver>3.5.0</plugin.maven.javadoc.ver>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
|
2023-05-17 23:09:17 +03:00
|
|
|
|
<plugin.maven.gpg.ver>3.1.0</plugin.maven.gpg.ver>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
|
2023-05-17 23:09:17 +03:00
|
|
|
|
<plugin.maven.release.ver>3.0.0</plugin.maven.release.ver>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.quarkus.platform</groupId>
|
|
|
|
|
<artifactId>quarkus-bom</artifactId>
|
|
|
|
|
<version>${quarkus.platform.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dev.struchkov.haiti.filter</groupId>
|
|
|
|
|
<artifactId>haiti-filter-jooq</artifactId>
|
|
|
|
|
<version>${haiti.filter.jooq.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.smallrye.reactive</groupId>
|
|
|
|
|
<artifactId>smallrye-mutiny-vertx-pg-client</artifactId>
|
|
|
|
|
</dependency>
|
2022-01-17 07:08:53 +03:00
|
|
|
|
|
|
|
|
|
<!--Все зависимости ниже необходимы только для нативной сборки Quarkus-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
2023-05-17 23:09:17 +03:00
|
|
|
|
<version>${postgresql.ver}</version>
|
2022-01-17 07:08:53 +03:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-05-17 23:09:17 +03:00
|
|
|
|
<version>${jetbrains.annotations.ver}</version>
|
2022-01-17 07:08:53 +03:00
|
|
|
|
</dependency>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
|
<version>${plugin.maven.release.ver}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<preparationGoals>clean install</preparationGoals>
|
|
|
|
|
<tagNameFormat>v.@{project.version}</tagNameFormat>
|
|
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
|
|
|
<pushChanges>false</pushChanges>
|
|
|
|
|
<localCheckout>true</localCheckout>
|
|
|
|
|
<signTag>true</signTag>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<version>${plugin.nexus.staging.ver}</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>${plugin.maven.source.ver}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>${plugin.maven.javadoc.ver}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>${plugin.maven.gpg.ver}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<gpgArguments>
|
|
|
|
|
<gpgArgument>--pinentry-mode</gpgArgument>
|
|
|
|
|
<gpgArgument>loopback</gpgArgument>
|
|
|
|
|
</gpgArguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<configuration>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
</configuration>
|
2022-02-10 23:24:26 +03:00
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<profile>
|
|
|
|
|
<id>release-struchkov-nexus</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>struchkov-nexus</serverId>
|
|
|
|
|
<nexusUrl>https://nexus.struchkov.dev/nexus/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
<skipStaging>true</skipStaging>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>snapshot</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>struchkov-nexus</serverId>
|
|
|
|
|
<nexusUrl>https://nexus.struchkov.dev/nexus/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2022-01-12 17:39:22 +03:00
|
|
|
|
</profiles>
|
|
|
|
|
|
2023-05-11 12:59:08 +03:00
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>struchkov-nexus-release</id>
|
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-releases/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>struchkov-nexus-snapshot</id>
|
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-snapshots/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>struchkov-nexus-release</id>
|
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>struchkov-nexus-snapshot</id>
|
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2022-02-10 23:24:26 +03:00
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git:https://github.com/haiti-projects/haiti-filter-reactive-quarkus.git</connection>
|
|
|
|
|
<url>https://github.com/haiti-projects/haiti-filter-reactive-quarkus</url>
|
|
|
|
|
<developerConnection>scm:git:https://github.com/haiti-projects/haiti-filter-reactive-quarkus.git
|
|
|
|
|
</developerConnection>
|
2024-03-13 13:28:38 +03:00
|
|
|
|
<tag>v.1.4.0</tag>
|
2023-05-11 12:59:34 +03:00
|
|
|
|
</scm>
|
2022-02-10 23:24:26 +03:00
|
|
|
|
|
2022-01-12 17:39:22 +03:00
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>uPagge</id>
|
|
|
|
|
<name>Struchkov Mark</name>
|
|
|
|
|
<url>https://mark.struchkov.dev</url>
|
|
|
|
|
<email>mark@struchkov.dev</email>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
</project>
|