2016-01-14 01:14:53 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-11-17 02:41:12 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-07-13 20:23:38 +02:00
|
|
|
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>
|
2016-01-20 20:26:34 +01:00
|
|
|
|
2016-11-17 02:41:12 +01:00
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>Bots</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2022-06-21 21:28:25 +02:00
|
|
|
<version>6.1.0</version>
|
2016-10-03 12:18:37 +02:00
|
|
|
|
2016-11-17 02:41:12 +01:00
|
|
|
<modules>
|
|
|
|
<module>telegrambots</module>
|
|
|
|
<module>telegrambots-meta</module>
|
2017-06-18 05:34:13 +02:00
|
|
|
<module>telegrambots-extensions</module>
|
2017-06-30 18:29:10 +02:00
|
|
|
<module>telegrambots-abilities</module>
|
2018-04-17 11:52:08 +02:00
|
|
|
<module>telegrambots-spring-boot-starter</module>
|
2018-06-07 19:43:41 +02:00
|
|
|
<module>telegrambots-chat-session-bot</module>
|
2016-11-17 02:41:12 +01:00
|
|
|
</modules>
|
2016-10-03 12:18:37 +02:00
|
|
|
|
2016-07-13 20:23:38 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
2016-11-17 02:41:12 +01:00
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
<distribution>repo</distribution>
|
2016-07-13 20:23:38 +02:00
|
|
|
</license>
|
|
|
|
</licenses>
|
2016-01-14 01:14:53 +01:00
|
|
|
|
2019-09-10 23:29:10 +02:00
|
|
|
<name>Bots</name>
|
|
|
|
<url>https://github.com/rubenlagus/TelegramBots</url>
|
|
|
|
<description>Easy to use library to create Telegram Bots</description>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/rubenlagus/TelegramBots/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/rubenlagus/TelegramBots</url>
|
|
|
|
<connection>scm:git:git://github.com/rubenlagus/TelegramBots.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:rubenlagus/TelegramBots.git</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<email>rberlopez@gmail.com</email>
|
|
|
|
<name>Ruben Bermudez</name>
|
|
|
|
<url>https://github.com/rubenlagus</url>
|
|
|
|
<id>rubenlagus</id>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2016-07-13 20:23:38 +02:00
|
|
|
<properties>
|
2019-07-08 21:22:51 +02:00
|
|
|
<java.version>11</java.version>
|
2019-07-08 21:42:42 +02:00
|
|
|
<maven.compiler.release>8</maven.compiler.release>
|
2019-07-08 21:22:51 +02:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
|
2022-04-24 17:19:11 +02:00
|
|
|
<junit.version>5.8.2</junit.version>
|
2022-06-17 00:33:57 +02:00
|
|
|
<mockito.version>4.6.1</mockito.version>
|
|
|
|
<mockitojupiter.version>4.6.1</mockitojupiter.version>
|
2022-04-17 22:17:32 +02:00
|
|
|
<jacksonanotation.version>2.13.2</jacksonanotation.version>
|
2022-04-24 17:19:11 +02:00
|
|
|
<jackson.version>2.13.2.2</jackson.version>
|
|
|
|
<json.version>20220320</json.version>
|
|
|
|
<slf4j.version>1.7.36</slf4j.version>
|
2022-06-17 00:33:57 +02:00
|
|
|
<jakarta.annotation.version>2.1.1</jakarta.annotation.version>
|
2022-04-24 17:19:11 +02:00
|
|
|
<lombok.version>1.18.24</lombok.version>
|
|
|
|
<guava.version>31.1-jre</guava.version>
|
2016-07-13 20:23:38 +02:00
|
|
|
</properties>
|
2019-07-08 21:22:51 +02:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2020-10-31 14:41:05 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-07-08 21:22:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-07-29 01:24:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-07-08 21:22:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2020-11-03 04:04:14 +01:00
|
|
|
<version>${jacksonanotation.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
2019-07-08 21:22:51 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
2020-11-03 04:04:14 +01:00
|
|
|
<version>${jacksonanotation.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
<version>${jacksonanotation.version}</version>
|
2019-07-08 21:22:51 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2019-07-27 14:19:54 +02:00
|
|
|
<dependency>
|
2019-09-09 19:10:26 +02:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
2019-07-27 14:19:54 +02:00
|
|
|
</dependency>
|
2020-11-03 04:04:14 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>${json.version}</version>
|
|
|
|
</dependency>
|
2019-11-19 01:30:27 +01:00
|
|
|
<!-- Included to enforce common version-->
|
2019-09-11 00:44:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
|
|
<version>${jakarta.annotation.version}</version>
|
|
|
|
</dependency>
|
2019-07-08 21:22:51 +02:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${mockitojupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-07-27 14:19:54 +02:00
|
|
|
|
|
|
|
<dependency>
|
2019-09-09 19:10:26 +02:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
2019-07-27 14:19:54 +02:00
|
|
|
</dependency>
|
2019-07-08 21:22:51 +02:00
|
|
|
</dependencies>
|
2019-09-10 23:29:10 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-04-01 10:10:13 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
2022-04-24 17:19:11 +02:00
|
|
|
<version>3.12.0</version>
|
2020-04-01 10:10:13 +02:00
|
|
|
</plugin>
|
2019-09-10 23:29:10 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2022-04-24 17:19:11 +02:00
|
|
|
<version>3.0.1</version>
|
2019-09-10 23:29:10 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-04-01 10:10:13 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2022-04-24 17:19:11 +02:00
|
|
|
<version>3.4.0</version>
|
2020-04-01 10:10:13 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>aggregate</id>
|
|
|
|
<phase>site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>aggregate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<doclint>none</doclint>
|
2020-08-11 12:17:33 +02:00
|
|
|
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
|
2020-04-01 10:10:13 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-09-10 23:29:10 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2022-04-24 17:19:11 +02:00
|
|
|
<version>1.6.13</version>
|
2019-09-10 23:29:10 +02:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2022-04-24 17:19:11 +02:00
|
|
|
<version>3.0.0</version>
|
2019-09-10 23:29:10 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-versions</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
2022-01-09 00:12:50 +01:00
|
|
|
<DependencyConvergence/>
|
2019-09-10 23:29:10 +02:00
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-12-14 17:12:47 +01:00
|
|
|
</project>
|