TDLightTelegramBots/pom.xml

237 lines
8.7 KiB
XML
Raw Normal View History

2016-01-14 01:14:53 +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"
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
2022-07-19 23:34:41 +02:00
<groupId>org.warp</groupId>
2023-02-09 18:01:47 +01:00
<artifactId>bots</artifactId>
<packaging>pom</packaging>
2023-08-19 19:40:14 +02:00
<version>6.8.0</version>
2016-10-03 12:18:37 +02:00
<modules>
<module>telegrambots</module>
<module>telegrambots-meta</module>
<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>
<module>telegrambots-chat-session-bot</module>
</modules>
2016-10-03 12:18:37 +02:00
2016-07-13 20:23:38 +02:00
<licenses>
<license>
<name>MIT License</name>
2022-05-09 22:40:52 +02:00
<url>https://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>
<repository>
2022-01-10 22:59:53 +01:00
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
2019-09-10 23:29:10 +02:00
</repository>
2022-01-10 22:59:53 +01:00
<snapshotRepository>
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</snapshotRepository>
2019-09-10 23:29:10 +02:00
</distributionManagement>
2016-07-13 20:23:38 +02:00
<properties>
2019-07-08 21:22:51 +02:00
<java.version>11</java.version>
2022-04-09 02:42:41 +02:00
<maven.compiler.release>11</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-11-08 19:33:50 +01:00
<junit.version>5.9.1</junit.version>
<mockito.version>4.8.1</mockito.version>
<mockitojupiter.version>4.8.1</mockitojupiter.version>
2023-05-30 02:32:15 +02:00
<jacksonanotation.version>2.14.2</jacksonanotation.version>
<jackson.version>2.14.2</jackson.version>
2022-11-08 19:33:50 +01:00
<slf4j.version>2.0.3</slf4j.version>
2022-06-17 00:33:57 +02:00
<jakarta.annotation.version>2.1.1</jakarta.annotation.version>
2023-08-19 19:40:14 +02:00
<lombok.version>1.18.28</lombok.version>
<guava.version>32.0.0-jre</guava.version>
<commons.version>3.12.0</commons.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>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>
2022-04-09 20:11:29 +02:00
<artifactId>jackson-module-jakarta-xmlbind-annotations</artifactId>
2020-11-03 04:04:14 +01:00
<version>${jacksonanotation.version}</version>
</dependency>
<dependency>
2022-04-09 20:11:29 +02:00
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
2020-11-03 04:04:14 +01:00
<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>
2020-11-03 04:04:14 +01:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${json.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>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.version}</version>
</dependency>
2019-11-19 01:30:27 +01:00
<!-- Included to enforce common version-->
<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>
<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.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>
<DependencyConvergence/>
2019-09-10 23:29:10 +02:00
</rules>
</configuration>
</plugin>
</plugins>
</build>
</project>