tdlight-java/tdlib/pom.xml

136 lines
5.2 KiB
XML
Raw Normal View History

2020-04-19 16:32:49 +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>
2020-08-18 23:13:36 +02:00
<groupId>it.tdlight</groupId>
<artifactId>tdlib-java</artifactId>
2020-10-11 16:34:39 +02:00
<version>3.169.1-SNAPSHOT</version>
<name>TDLib Java Wrapper</name>
2020-06-13 01:53:45 +02:00
<packaging>jar</packaging>
2020-04-19 16:32:49 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2020-07-27 12:40:16 +02:00
2020-07-27 12:59:41 +02:00
<repositories>
<repository>
2020-10-07 11:17:01 +02:00
<id>mchv-release</id>
<name>MCHV Release Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
2020-08-06 12:06:12 +02:00
</repository>
2020-10-07 00:51:26 +02:00
<repository>
<id>mchv-snapshot</id>
2020-10-07 11:17:01 +02:00
<name>MCHV Snapshot Apache Maven Packages</name>
2020-10-07 12:15:14 +02:00
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
2020-10-07 00:51:26 +02:00
</repository>
2020-07-27 12:59:41 +02:00
</repositories>
2020-10-07 00:51:26 +02:00
<distributionManagement>
<repository>
2020-10-07 11:17:01 +02:00
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
2020-10-07 00:51:26 +02:00
</repository>
<snapshotRepository>
2020-10-07 11:17:01 +02:00
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
2020-10-07 00:51:26 +02:00
</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>
2020-10-07 12:04:49 +02:00
<tag>HEAD</tag>
2020-10-07 00:51:26 +02:00
</scm>
2020-07-27 12:40:16 +02:00
2020-04-19 16:32:49 +02:00
<dependencies>
2020-08-18 23:13:36 +02:00
<dependency>
2020-08-23 14:11:57 +02:00
<groupId>it.tdlight</groupId>
<artifactId>tdlib-natives-linux-amd64</artifactId>
2020-10-11 16:34:39 +02:00
<version>3.0.0</version>
2020-08-23 00:33:59 +02:00
</dependency>
2020-08-19 02:39:50 +02:00
<dependency>
2020-08-23 14:11:57 +02:00
<groupId>it.tdlight</groupId>
<artifactId>tdlib-natives-linux-aarch64</artifactId>
2020-10-11 16:34:39 +02:00
<version>3.0.0</version>
2020-08-23 19:48:42 +02:00
</dependency>
2020-08-19 02:39:50 +02:00
<dependency>
2020-08-23 14:11:57 +02:00
<groupId>it.tdlight</groupId>
<artifactId>tdlib-natives-windows-amd64</artifactId>
2020-10-11 16:34:39 +02:00
<version>3.0.0</version>
2020-08-23 19:48:42 +02:00
</dependency>
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlib-natives-osx-amd64</artifactId>
2020-10-11 16:34:39 +02:00
<version>3.0.0</version>
2020-08-23 19:48:42 +02:00
</dependency>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>concurrent-locks</artifactId>
<version>1.0.5</version>
</dependency>
2020-04-19 16:32:49 +02:00
</dependencies>
<build>
<sourceDirectory>../src/main/java</sourceDirectory>
2020-04-19 16:32:49 +02:00
<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>
2020-08-20 14:50:53 +02:00
<source>1.8</source>
<target>1.8</target>
<excludes>
<exclude>it/tdlight/tdlight/**</exclude>
</excludes>
</configuration>
</plugin>
2020-10-07 00:51:26 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
2020-10-07 12:04:49 +02:00
<configuration>
<pushChanges>false</pushChanges>
<remoteTagging>false</remoteTagging>
<preparationGoals>clean verify</preparationGoals>
<localCheckout>true</localCheckout>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
2020-10-07 00:51:26 +02:00
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</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>
2020-04-19 16:32:49 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>filtering-java-templates</id>
<goals>
<goal>filter-sources</goal>
</goals>
<configuration>
<sourceDirectory>../src/main/java-templates-tdlib</sourceDirectory>
</configuration>
2020-04-19 16:32:49 +02:00
</execution>
</executions>
</plugin>
</plugins>
</build>
2020-04-25 13:08:10 +02:00
</project>