2021-12-08 02:00:32 +01: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>tdlight-java-bom</artifactId>
|
2023-02-08 20:22:11 +01:00
|
|
|
<version>${revision}${nativesSsl3Suffix}${revisionSuffix}</version>
|
2021-12-08 02:00:32 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>TDLight Java BOM</name>
|
2023-02-08 20:22:11 +01:00
|
|
|
<properties>
|
|
|
|
<revision>1.0.0.0</revision>
|
|
|
|
<revisionSuffix>-SNAPSHOT</revisionSuffix>
|
|
|
|
<nativesRevisionNumber>299</nativesRevisionNumber>
|
|
|
|
<apiRevisionNumber>297</apiRevisionNumber>
|
|
|
|
<nativesRevisionSuffix/>
|
|
|
|
<nativesSsl3Suffix/>
|
|
|
|
<tdlight.natives.version>4.0.${nativesRevisionNumber}${nativesRevisionSuffix}</tdlight.natives.version>
|
|
|
|
<tdlight.natives.ssl3.version>4.0.${nativesRevisionNumber}${nativesSsl3Suffix}${nativesRevisionSuffix}</tdlight.natives.ssl3.version>
|
|
|
|
<apiRevisionSuffix/>
|
|
|
|
<tdlight.api.version>4.0.${apiRevisionNumber}${apiRevisionSuffix}</tdlight.api.version>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
2021-12-08 02:00:32 +01: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/tdlight-java.git</connection>
|
|
|
|
<developerConnection>scm:git:https://git.ignuranza.net/tdlight-team/tdlight-java.git</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>core</artifactId>
|
2022-05-09 22:28:43 +02:00
|
|
|
<version>3.5.0</version>
|
2023-01-03 02:10:36 +01:00
|
|
|
<optional>true</optional>
|
2021-12-08 02:00:32 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-api-legacy</artifactId>
|
|
|
|
<version>${tdlight.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-api-sealed</artifactId>
|
|
|
|
<version>${tdlight.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-api-legacy</artifactId>
|
|
|
|
<version>${tdlight.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-api-sealed</artifactId>
|
|
|
|
<version>${tdlight.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-java</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2023-01-02 01:40:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-java-8</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2021-12-08 02:00:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-java</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-java-parent</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-java-parent</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- TDLight natives -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives-linux-amd64</artifactId>
|
2023-02-08 20:22:11 +01:00
|
|
|
<version>${tdlight.natives.ssl3.version}</version>
|
2021-12-08 02:00:32 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives-linux-aarch64</artifactId>
|
2023-02-08 20:22:11 +01:00
|
|
|
<version>${tdlight.natives.ssl3.version}</version>
|
2021-12-08 02:00:32 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives-linux-x86</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlight-natives-linux-armhf</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlight-natives-linux-ppc64le</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlight-natives-windows-amd64</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlight-natives-windows-s390x</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlight-natives-osx-amd64</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- TDLib natives -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-natives-linux-amd64</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-natives-linux-aarch64</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-natives-linux-x86</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlib-natives-linux-armhf</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlib-natives-linux-ppc64le</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2021-12-17 16:25:57 +01:00
|
|
|
<artifactId>tdlib-natives-linux-s390x</artifactId>
|
2021-12-08 02:00:32 +01:00
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-natives-windows-amd64</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.tdlight</groupId>
|
|
|
|
<artifactId>tdlib-natives-osx-amd64</artifactId>
|
|
|
|
<version>${tdlight.natives.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>../parent</module>
|
|
|
|
</modules>
|
2021-12-08 17:46:29 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2022-05-11 09:37:24 +02:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<updatePomFile>true</updatePomFile>
|
2022-05-11 10:19:12 +02:00
|
|
|
<flattenMode>oss</flattenMode>
|
|
|
|
<pomElements>
|
|
|
|
<dependencyManagement>resolve</dependencyManagement>
|
|
|
|
<dependencies>resolve</dependencies>
|
|
|
|
<version>resolve</version>
|
|
|
|
</pomElements>
|
2022-05-11 09:37:24 +02:00
|
|
|
</configuration>
|
2021-12-08 17:46:29 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-05-11 09:37:24 +02:00
|
|
|
<id>flatten</id>
|
|
|
|
<phase>process-resources</phase>
|
2021-12-08 17:46:29 +01:00
|
|
|
<goals>
|
|
|
|
<goal>flatten</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2022-05-11 09:37:24 +02:00
|
|
|
<execution>
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
<phase>clean</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2021-12-08 17:46:29 +01:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-12-08 02:00:32 +01:00
|
|
|
</project>
|