2021-12-08 02:00:32 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<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>
|
|
|
|
<artifactId>tdlight-java-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
|
|
<groupId>it.tdlight</groupId>
|
2023-02-08 20:27:04 +01:00
|
|
|
<version>${revision}${nativesSsl3Suffix}${revisionSuffix}</version>
|
2021-12-08 02:00:32 +01:00
|
|
|
<artifactId>tdlight-java-bom</artifactId>
|
|
|
|
<relativePath>../bom/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<properties>
|
2023-02-08 20:27:04 +01:00
|
|
|
<revision>1.0.0.0</revision>
|
|
|
|
<revisionSuffix>-SNAPSHOT</revisionSuffix>
|
|
|
|
<nativesSsl3Suffix/>
|
2021-12-08 02:00:32 +01:00
|
|
|
</properties>
|
|
|
|
<modules>
|
|
|
|
<!--disabled: <module>../tdlib</module>-->
|
2023-01-02 01:40:23 +01:00
|
|
|
<module>../tdlight-java</module>
|
|
|
|
<module>../tdlight-java-8</module>
|
2021-12-08 02:00:32 +01:00
|
|
|
</modules>
|
2021-12-08 17:46:29 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2022-05-11 09:46:52 +02:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
<flattenMode>oss</flattenMode>
|
|
|
|
</configuration>
|
2021-12-08 17:46:29 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-05-11 09:46:52 +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:46:52 +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>
|