tdlight-java/example/pom.xml

136 lines
3.7 KiB
XML
Raw Permalink Normal View History

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>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlight-java-bom</artifactId>
<version>3.4.0+td.1.8.26</version>
<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>
<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>
<classifier>linux_amd64_clang_ssl3</classifier>
2023-06-06 00:10:06 +02:00
</dependency>
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlight-natives</artifactId>
<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>
2024-02-22 01:34:07 +01:00
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlight-natives</artifactId>
<classifier>macos_arm64</classifier>
</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>
2024-02-21 18:20:27 +01:00
<version>2.22.1</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>
2024-02-21 18:20:27 +01:00
<version>2.22.1</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>
2024-02-22 01:34:07 +01:00
<version>3.3.1</version>
2021-10-22 12:46:59 +02:00
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
2024-02-22 01:34:07 +01:00
<version>3.3.1</version>
2021-10-22 12:46:59 +02:00
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
2024-02-22 01:34:07 +01:00
<version>3.11.0</version>
2021-10-22 12:46:59 +02:00
<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>
2024-02-22 01:34:07 +01:00
<version>3.3.0</version>
2021-10-22 12:46:59 +02:00
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
2024-02-22 01:34:07 +01:00
<version>3.1.1</version>
2021-10-22 12:46:59 +02:00
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
2024-02-22 01:34:07 +01:00
<version>3.1.1</version>
2021-10-22 12:46:59 +02:00
</plugin>
</plugins>
</build>
2020-10-23 04:44:15 +02:00
</project>