tdlib-session-container/pom.xml

432 lines
12 KiB
XML
Raw Permalink Normal View History

2022-05-09 11:20:20 +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-04-27 10:52:42 +02:00
<modelVersion>4.0.0</modelVersion>
<groupId>it.tdlight</groupId>
<artifactId>tdlib-reactive-api</artifactId>
<version>6.0.${revision}</version>
<name>TDLib Reactive API</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>0-SNAPSHOT</revision>
2020-12-20 12:13:25 +01:00
2022-09-10 20:25:35 +02:00
<record.builder.version>34</record.builder.version>
2022-04-27 10:52:42 +02:00
</properties>
2022-06-30 15:07:14 +02:00
<pluginRepositories>
<pluginRepository>
<id>mchv-release</id>
<name>MCHV Release Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</pluginRepository>
</pluginRepositories>
2022-04-27 10:52:42 +02:00
<repositories>
<repository>
<id>mchv-release</id>
<name>MCHV Release Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<repository>
<id>mchv-snapshot</id>
<name>MCHV Snapshot Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<snapshotRepository>
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:https://git.ignuranza.net/tdlight-team/tdlib-session-container.git</connection>
<developerConnection>scm:git:https://git.ignuranza.net/tdlight-team/tdlib-session-container.git
2022-05-09 11:20:20 +02:00
</developerConnection>
2022-04-27 10:52:42 +02:00
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
2021-12-08 11:53:39 +01:00
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlight-java-bom</artifactId>
2023-01-17 16:27:01 +01:00
<version>2.8.10.2</version>
2021-12-08 11:53:39 +01:00
<type>pom</type>
<scope>import</scope>
</dependency>
2022-01-07 11:09:40 +01:00
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-bom</artifactId>
2022-12-21 01:05:49 +01:00
<version>2022.0.1</version>
2022-10-04 12:43:24 +02:00
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-bom</artifactId>
<version>1.1.3</version>
2022-01-07 11:09:40 +01:00
<type>pom</type>
<scope>import</scope>
</dependency>
2022-04-27 10:52:42 +02:00
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>filequeue</artifactId>
2022-11-10 13:15:50 +01:00
<version>3.1.5</version>
2022-10-11 00:24:51 +02:00
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
2022-05-21 15:30:01 +02:00
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-tools</artifactId>
<classifier>original</classifier>
<scope>runtime</scope>
2022-12-21 01:05:49 +01:00
<version>3.5.1</version>
2022-09-07 23:30:11 +02:00
</dependency>
2022-10-06 19:06:35 +02:00
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
2022-05-10 00:34:09 +02:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>23.0.0</version>
</dependency>
2022-04-27 10:52:42 +02:00
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
2022-09-07 23:30:11 +02:00
<version>5.9.0</version>
2022-04-27 10:52:42 +02:00
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
2022-09-07 23:30:11 +02:00
<version>5.9.0</version>
2022-04-27 10:52:42 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
2022-09-07 23:30:11 +02:00
<version>2.0.54.Final</version>
2022-04-27 10:52:42 +02:00
</dependency>
<dependency>
<groupId>it.tdlight</groupId>
2023-01-02 01:58:04 +01:00
<artifactId>tdlight-java-8</artifactId>
2022-04-27 10:52:42 +02:00
</dependency>
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlight-natives-linux-amd64</artifactId>
</dependency>
2022-01-11 16:00:56 +01:00
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
2022-10-11 00:24:51 +02:00
<version>9.4</version>
2022-01-11 16:00:56 +01:00
</dependency>
2022-01-07 11:09:40 +01:00
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
2022-05-10 00:34:09 +02:00
</dependency>
2023-01-02 17:14:14 +01:00
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>8.5.11</version>
</dependency>
2022-01-07 11:09:40 +01:00
<dependency>
2022-01-13 01:59:26 +01:00
<groupId>io.projectreactor.kafka</groupId>
<artifactId>reactor-kafka</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2022-01-13 01:59:26 +01:00
</dependency>
2022-10-04 12:43:24 +02:00
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-core</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2022-10-04 12:43:24 +02:00
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-load-balancer</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2022-10-04 12:43:24 +02:00
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-transport-local</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2022-10-04 12:43:24 +02:00
</dependency>
<dependency>
<groupId>io.rsocket</groupId>
<artifactId>rsocket-transport-netty</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
2022-10-04 12:43:24 +02:00
</dependency>
2022-01-13 01:59:26 +01:00
<dependency>
2022-01-07 11:09:40 +01:00
<groupId>org.apache.logging.log4j</groupId>
2022-09-10 20:25:35 +02:00
<artifactId>log4j-api</artifactId>
2022-09-22 01:12:56 +02:00
<version>2.19.0</version>
2021-12-05 15:15:28 +01:00
</dependency>
2022-10-05 02:26:30 +02:00
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.19.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j20-impl</artifactId>
<version>2.18.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
2022-01-13 16:19:10 +01:00
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.4.4</version>
</dependency>
2021-12-05 15:15:28 +01:00
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.14.0-rc1</version>
2021-12-05 15:15:28 +01:00
</dependency>
2022-05-05 20:25:00 +02:00
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.0</version>
</dependency>
2021-12-05 15:15:28 +01:00
<dependency>
<groupId>net.minecrell</groupId>
<artifactId>terminalconsoleappender</artifactId>
2022-01-07 11:09:40 +01:00
<version>1.3.0</version>
2022-10-04 12:43:24 +02:00
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</exclusion>
</exclusions>
2021-12-05 15:15:28 +01:00
</dependency>
2022-01-07 11:09:40 +01:00
2021-12-07 02:25:01 +01:00
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<version>${record.builder.version}</version>
<scope>provided</scope>
</dependency>
2022-05-10 00:34:09 +02:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
<scope>compile</scope>
</dependency>
2022-04-27 10:52:42 +02:00
</dependencies>
<build>
<resources>
<resource>
<directory>../src/main/libs</directory>
<excludes>
<exclude>**/*.jar</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.jar</exclude>
</excludes>
</resource>
</resources>
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.5.0.Final</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
2021-12-07 02:25:01 +01:00
<configuration>
<source>17</source>
<target>17</target>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-processor</artifactId>
<version>${record.builder.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>io.soabase.recordbuilder.processor.RecordBuilderProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
2022-04-27 10:52:42 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
2022-05-11 20:22:25 +02:00
<artifactId>templating-maven-plugin</artifactId>
<version>1.0.0</version>
2022-04-27 10:52:42 +02:00
<executions>
<execution>
2022-05-11 20:22:25 +02:00
<id>filtering-java-templates</id>
2022-04-27 10:52:42 +02:00
<goals>
2022-05-11 20:22:25 +02:00
<goal>filter-sources</goal>
2022-04-27 10:52:42 +02:00
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
2022-05-11 09:49:57 +02:00
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
</configuration>
2022-04-27 10:52:42 +02:00
<executions>
<execution>
2022-05-11 09:49:57 +02:00
<id>flatten</id>
<phase>process-resources</phase>
2022-04-27 10:52:42 +02:00
<goals>
2022-05-11 09:49:57 +02:00
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
2022-04-27 10:52:42 +02:00
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
2022-09-07 23:30:11 +02:00
<version>5.9.0</version>
2022-04-27 10:52:42 +02:00
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
flatten-maven-plugin
</artifactId>
<versionRange>
[1.1.0,)
</versionRange>
<goals>
<goal>flatten</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
2022-07-05 00:47:13 +02:00
<profiles>
<profile>
<id>reactor-agent</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>reactor.agent.enable</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-maven-plugin</artifactId>
2023-01-05 12:48:39 +01:00
<version>1.12.21</version>
2022-07-05 00:47:13 +02:00
<executions>
<execution>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
<configuration>
<transformations>
<transformation>
<plugin>reactor.tools.agent.ReactorDebugByteBuddyPlugin</plugin>
</transformation>
</transformations>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>