2021-10-22 12:46:59 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>example-java</artifactId>
|
2023-04-27 02:14:39 +02:00
|
|
|
<version>3.0.0.0-SNAPSHOT</version>
|
2021-10-22 12:46:59 +02:00
|
|
|
<name>TDLight Java Example</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<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>
|
2021-12-08 02:00:32 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-java-bom</artifactId>
|
2023-11-08 23:56:48 +01:00
|
|
|
<version>3.2.0+td.1.8.21</version>
|
2021-12-08 02:00:32 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-10-22 12:46:59 +02:00
|
|
|
<dependencies>
|
|
|
|
<!-- TDLight -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2023-04-27 02:14:39 +02:00
|
|
|
<artifactId>tdlight-java</artifactId>
|
|
|
|
<classifier>jdk8</classifier>
|
2021-10-22 12:46:59 +02:00
|
|
|
</dependency>
|
2021-09-27 19:55:06 +02:00
|
|
|
|
2021-10-22 12:46:59 +02:00
|
|
|
<!-- TDLight natives -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2023-05-10 00:30:34 +02:00
|
|
|
<artifactId>tdlight-natives</artifactId>
|
2023-08-30 11:47:48 +02:00
|
|
|
<classifier>linux_amd64_gnu_ssl1</classifier>
|
2021-10-22 12:46:59 +02:00
|
|
|
</dependency>
|
2023-06-06 00:10:06 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives</artifactId>
|
2023-08-30 11:47:48 +02:00
|
|
|
<classifier>linux_amd64_clang_ssl3</classifier>
|
2023-06-06 00:10:06 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives</artifactId>
|
2023-08-30 11:47:48 +02:00
|
|
|
<classifier>linux_amd64_gnu_ssl3</classifier>
|
2023-06-06 00:10:06 +02:00
|
|
|
</dependency>
|
2021-10-22 12:46:59 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2023-05-10 00:30:34 +02:00
|
|
|
<artifactId>tdlight-natives</artifactId>
|
2023-05-10 22:50:12 +02:00
|
|
|
<classifier>windows_amd64</classifier>
|
2021-10-22 12:46:59 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2023-06-06 00:10:06 +02:00
|
|
|
<artifactId>tdlight-natives</artifactId>
|
|
|
|
<classifier>macos_amd64</classifier>
|
2021-10-22 12:46:59 +02:00
|
|
|
</dependency>
|
2021-09-27 19:55:06 +02:00
|
|
|
|
2021-10-22 12:46:59 +02:00
|
|
|
<!-- log4j logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2023-11-05 18:00:31 +01:00
|
|
|
<version>2.20.0</version>
|
2021-10-22 12:46:59 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
2022-09-10 23:14:12 +02:00
|
|
|
<artifactId>log4j-slf4j2-impl</artifactId>
|
2023-11-05 18:00:31 +01:00
|
|
|
<version>2.20.0</version>
|
2022-09-10 23:14:12 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-10-22 12:46:59 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
|
<version>3.4.4</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
2021-10-23 23:05:08 +02:00
|
|
|
<source>17</source>
|
|
|
|
<target>17</target>
|
2021-10-22 12:46:59 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>3.0.0-M1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-10-23 04:44:15 +02:00
|
|
|
</project>
|