2016-11-17 02:41:12 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
2019-07-08 21:22:51 +02:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>Bots</artifactId>
|
2022-01-02 00:06:28 +01:00
|
|
|
<version>5.6.0</version>
|
2019-07-08 21:22:51 +02:00
|
|
|
</parent>
|
|
|
|
|
2016-11-17 02:41:12 +01:00
|
|
|
<artifactId>telegrambots</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Telegram 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>
|
|
|
|
|
2016-11-17 20:37:41 +01:00
|
|
|
<ciManagement>
|
|
|
|
<url>https://travis-ci.org/rubenlagus/TelegramBots</url>
|
|
|
|
<system>Travis</system>
|
|
|
|
</ciManagement>
|
|
|
|
|
2016-11-17 02:41:12 +01:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<email>rberlopez@gmail.com</email>
|
|
|
|
<name>Ruben Bermudez</name>
|
|
|
|
<url>https://github.com/rubenlagus</url>
|
|
|
|
<id>rubenlagus</id>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<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
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2019-07-08 21:22:51 +02:00
|
|
|
|
2021-11-14 22:37:13 +01:00
|
|
|
<glassfish.version>2.32</glassfish.version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<jerseybundle.version>1.19.3</jerseybundle.version>
|
2020-11-01 23:46:36 +01:00
|
|
|
<httpcompontents.version>4.5.13</httpcompontents.version>
|
2021-11-14 22:37:13 +01:00
|
|
|
<commonio.version>2.8.0</commonio.version>
|
2016-11-17 02:41:12 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey</groupId>
|
|
|
|
<artifactId>jersey-bom</artifactId>
|
|
|
|
<version>${glassfish.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>telegrambots-meta</artifactId>
|
2022-01-02 00:06:28 +01:00
|
|
|
<version>5.6.0</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
</dependency>
|
2020-11-03 03:57:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-11-17 02:41:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
2017-01-31 14:24:53 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
</dependency>
|
2019-07-08 21:22:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
|
|
|
</dependency>
|
2016-11-17 02:41:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
2019-07-29 01:24:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
|
|
<artifactId>jersey-hk2</artifactId>
|
|
|
|
</dependency>
|
2016-11-17 02:41:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
2017-01-31 14:24:53 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
<artifactId>jackson-jaxrs-base</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-11-17 02:41:12 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
|
|
<artifactId>jersey-container-grizzly2-http</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
2020-11-01 23:46:36 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-11-17 02:41:12 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>${httpcompontents.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
|
<version>${httpcompontents.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commonio.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.test-framework</groupId>
|
|
|
|
<artifactId>jersey-test-framework-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
|
|
|
<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
|
2016-12-26 03:46:46 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-17 02:41:12 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<directory>${project.basedir}/target</directory>
|
|
|
|
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
|
|
<testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
|
|
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
|
|
|
<plugins>
|
2019-07-08 21:22:51 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M3</version>
|
|
|
|
</plugin>
|
2016-11-17 02:41:12 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>1.6</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>1.6.8</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.1.0</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>clean-project</id>
|
|
|
|
<phase>clean</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.1.1</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<configuration>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.1.0</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.1.0</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-07-08 21:22:51 +02:00
|
|
|
<doclint>none</doclint>
|
2016-11-17 02:41:12 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-11-17 20:48:25 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>0.8.4</version>
|
2016-11-17 20:48:25 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-01-31 14:24:53 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.0.0-M2</version>
|
2017-01-31 14:24:53 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-02-25 20:13:26 +01:00
|
|
|
<id>enforce-versions</id>
|
2017-01-31 14:24:53 +01:00
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2017-02-25 20:13:26 +01:00
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<DependencyConvergence />
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
2017-01-31 14:24:53 +01:00
|
|
|
</plugin>
|
2017-03-27 00:49:08 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.1.1</version>
|
2017-03-27 00:49:08 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-11-17 02:41:12 +01:00
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-07-08 21:22:51 +02:00
|
|
|
<version>3.8.1</version>
|
2016-11-17 02:41:12 +01:00
|
|
|
<configuration>
|
2019-07-08 21:22:51 +02:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2016-11-17 02:41:12 +01:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|