220 lines
8.7 KiB
XML
220 lines
8.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<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>
|
||
|
||
<groupId>dev.struchkov.haiti.filter</groupId>
|
||
<artifactId>haiti-filter-quarkus-reactive</artifactId>
|
||
<version>0.6.0-SNAPSHOT</version>
|
||
<packaging>jar</packaging>
|
||
|
||
<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>
|
||
<url>https://raw.githubusercontent.com/haiti-projects/haiti-filter-reactive-quarkus/master/LICENSE</url>
|
||
</license>
|
||
</licenses>
|
||
<issueManagement>
|
||
<system>GitHub</system>
|
||
<url>https://github.com/haiti-projects/haiti-filter-reactive-quarkus/issues</url>
|
||
</issueManagement>
|
||
|
||
<properties>
|
||
<java.version>11</java.version>
|
||
<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>
|
||
|
||
<quarkus.platform.version>2.5.1.Final</quarkus.platform.version>
|
||
<haiti.filter.jooq.version>0.6.0-SNAPSHOT</haiti.filter.jooq.version>
|
||
|
||
<plugin.maven.compiler.ver>3.9.0</plugin.maven.compiler.ver>
|
||
<plugin.nexus.staging.ver>1.6.8</plugin.nexus.staging.ver>
|
||
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
|
||
<plugin.maven.javadoc.ver>3.3.1</plugin.maven.javadoc.ver>
|
||
<plugin.maven.gpg.ver>3.0.1</plugin.maven.gpg.ver>
|
||
</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>
|
||
|
||
<!--Все зависимости ниже необходимы только для нативной сборки Quarkus-->
|
||
<dependency>
|
||
<groupId>org.postgresql</groupId>
|
||
<artifactId>postgresql</artifactId>
|
||
<version>42.3.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>jakarta.xml.bind</groupId>
|
||
<artifactId>jakarta.xml.bind-api</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.jetbrains</groupId>
|
||
<artifactId>annotations</artifactId>
|
||
<version>20.1.0</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<pluginManagement>
|
||
<plugins>
|
||
<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-compiler-plugin</artifactId>
|
||
<version>${plugin.maven.compiler.ver}</version>
|
||
<configuration>
|
||
<source>${java.version}</source>
|
||
<target>${java.version}</target>
|
||
</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>
|
||
</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>
|
||
|
||
<profiles>
|
||
<profile>
|
||
<id>release</id>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.sonatype.plugins</groupId>
|
||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
</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>
|
||
</profiles>
|
||
|
||
<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>
|
||
</scm>
|
||
|
||
<distributionManagement>
|
||
<snapshotRepository>
|
||
<id>ossrh</id>
|
||
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
||
</snapshotRepository>
|
||
</distributionManagement>
|
||
|
||
<developers>
|
||
<developer>
|
||
<id>uPagge</id>
|
||
<name>Struchkov Mark</name>
|
||
<url>https://mark.struchkov.dev</url>
|
||
<email>mark@struchkov.dev</email>
|
||
</developer>
|
||
</developers>
|
||
|
||
</project> |