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>
|
2019-06-08 21:39:08 +02:00
|
|
|
<version>4.3.1</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
|
|
|
|
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>
|
|
|
|
|
2016-11-17 02:41:12 +01:00
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
2019-07-08 21:22:51 +02:00
|
|
|
|
|
|
|
<junit.version>5.5.0</junit.version>
|
|
|
|
<mockito.version>3.0.0</mockito.version>
|
|
|
|
<mockitojupiter.version>2.23.4</mockitojupiter.version>
|
|
|
|
<jackson.version>2.9.9</jackson.version>
|
2016-07-13 20:23:38 +02:00
|
|
|
</properties>
|
2019-07-08 21:22:51 +02:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</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>
|
|
|
|
</dependencies>
|
2016-01-14 01:14:53 +01:00
|
|
|
</project>
|