tdlight-java/pom.xml

132 lines
4.8 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>tdlight-java</artifactId>
2020-10-07 00:51:26 +02:00
<version>3.169.0-SNAPSHOT</version>
2020-08-18 23:13:36 +02:00
<name>TDLight 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-08-23 14:11:57 +02:00
<id>mchv</id>
<name>MCHV 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>
<name>MCHV Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot/</url>
</repository>
2020-07-27 12:59:41 +02:00
</repositories>
2020-10-07 00:51:26 +02:00
<distributionManagement>
<repository>
<id>mchv</id>
<name>MCHV Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv/</url>
</repository>
<snapshotRepository>
<id>mchv</id>
<name>MCHV Apache Maven Packages</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>master</tag>
</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>tdlight-natives-linux-amd64</artifactId>
2020-10-07 03:04:40 +02:00
<version>2.0.2-SNAPSHOT</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>tdlight-natives-linux-aarch64</artifactId>
2020-10-07 03:04:40 +02:00
<version>2.0.2-SNAPSHOT</version>
2020-08-23 19:48:42 +02:00
</dependency>
2020-10-07 00:51:26 +02:00
<!-- Currently unsupported platform
2020-08-19 02:39:50 +02:00
<dependency>
2020-08-23 14:11:57 +02:00
<groupId>it.tdlight</groupId>
<artifactId>tdlight-natives-windows-amd64</artifactId>
2020-10-07 00:51:26 +02:00
<version>2.0.1-SNAPSHOT</version>
2020-08-23 19:48:42 +02:00
</dependency>
2020-10-07 00:51:26 +02:00
-->
<!-- Currently unsupported platform
2020-08-23 19:48:42 +02:00
<dependency>
<groupId>it.tdlight</groupId>
<artifactId>tdlight-natives-osx-amd64</artifactId>
2020-10-07 00:51:26 +02:00
<version>2.0.1-SNAPSHOT</version>
2020-08-23 19:48:42 +02:00
</dependency>
2020-10-07 00:51:26 +02:00
-->
2020-04-19 16:32:49 +02:00
</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>
2020-08-20 14:50:53 +02:00
<source>1.8</source>
<target>1.8</target>
</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>
<executions>
<execution>
<id>default</id>
<goals>
<goal>perform</goal>
</goals>
<configuration>
<pomFileName>${project.name}/pom.xml</pomFileName>
</configuration>
</execution>
</executions>
</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>
</execution>
</executions>
</plugin>
</plugins>
</build>
2020-04-25 13:08:10 +02:00
</project>