2020-11-05 01:25:19 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-03-20 17:12:15 +03:00
|
|
|
<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">
|
2020-11-05 01:25:19 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-07-30 10:31:31 +03:00
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<artifactId>telegram-bot</artifactId>
|
2023-04-24 10:02:36 +03:00
|
|
|
<version>0.0.60</version>
|
2020-11-05 01:25:19 +03:00
|
|
|
<packaging>pom</packaging>
|
2022-01-25 10:28:54 +03:00
|
|
|
|
2020-11-05 01:25:19 +03:00
|
|
|
<modules>
|
2022-01-25 10:28:54 +03:00
|
|
|
<module>telegram-core</module>
|
2022-07-30 10:31:31 +03:00
|
|
|
<module>telegram-sender</module>
|
|
|
|
<module>telegram-domain</module>
|
|
|
|
<module>telegram-consumer</module>
|
|
|
|
<module>telegram-context</module>
|
2022-09-19 20:21:31 +03:00
|
|
|
<module>telegram-simple</module>
|
2023-03-17 03:16:18 +03:00
|
|
|
<module>telegram-webhook</module>
|
2020-11-05 01:25:19 +03:00
|
|
|
</modules>
|
|
|
|
|
2020-11-05 01:48:43 +03:00
|
|
|
<name>Telegram Bot</name>
|
|
|
|
<description>Allows you to create bots for Telegram</description>
|
2020-11-15 20:16:50 +03:00
|
|
|
<url>https://github.com/Godfather-Bots/telegram-bot</url>
|
2020-11-05 01:48:43 +03:00
|
|
|
<licenses>
|
|
|
|
<license>
|
2022-01-25 10:28:54 +03:00
|
|
|
<name>BSD 3-Clause "New" or "Revised" License</name>
|
|
|
|
<url>https://github.com/Godfather-Bots/godfather/blob/master/LICENSE</url>
|
2020-11-05 01:48:43 +03:00
|
|
|
</license>
|
|
|
|
</licenses>
|
2020-11-15 20:16:50 +03:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/Godfather-Bots/telegram-bot/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
2022-01-25 10:28:54 +03:00
|
|
|
<properties>
|
|
|
|
<java.version>17</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
2023-04-24 10:01:33 +03:00
|
|
|
<godfather.core.ver>0.0.59</godfather.core.ver>
|
2023-02-18 11:23:46 +03:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.telegram/telegrambots -->
|
2023-04-23 05:03:07 +03:00
|
|
|
<telegrambots.ver>6.5.0</telegrambots.ver>
|
2022-01-25 10:28:54 +03:00
|
|
|
|
2023-03-17 03:16:18 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/io.smallrye.reactive/smallrye-mutiny-vertx-core -->
|
|
|
|
<smallrye.mutiny.vertx.core.version>2.30.1</smallrye.mutiny.vertx.core.version>
|
|
|
|
|
2023-03-26 17:42:44 +03:00
|
|
|
<haiti.version>2.7.2</haiti.version>
|
2022-07-30 10:31:31 +03:00
|
|
|
|
2023-02-18 11:23:46 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
|
2022-04-29 01:26:12 +03:00
|
|
|
<plugin.maven.compiler.ver>3.10.1</plugin.maven.compiler.ver>
|
2023-02-18 11:23:46 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin -->
|
2022-04-29 01:26:12 +03:00
|
|
|
<plugin.nexus.staging.ver>1.6.13</plugin.nexus.staging.ver>
|
2023-02-18 11:23:46 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
|
2022-01-25 10:28:54 +03:00
|
|
|
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
|
2023-02-18 11:23:46 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
|
|
|
|
<plugin.maven.javadoc.ver>3.5.0</plugin.maven.javadoc.ver>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
|
2022-01-25 10:28:54 +03:00
|
|
|
<plugin.maven.gpg.ver>3.0.1</plugin.maven.gpg.ver>
|
2023-02-18 11:23:46 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
|
2022-12-18 17:33:47 +03:00
|
|
|
<plugin.maven.release.ver>3.0.0-M7</plugin.maven.release.ver>
|
2022-01-25 10:28:54 +03:00
|
|
|
</properties>
|
|
|
|
|
2020-11-15 20:16:50 +03:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-07-30 10:31:31 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
2023-02-17 17:58:28 +03:00
|
|
|
<artifactId>telegram-domain-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-domain-simple</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-domain-quarkus</artifactId>
|
2022-07-30 10:31:31 +03:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-08-07 07:09:04 +03:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-context-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-context-simple</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-context-quarkus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-09-19 20:21:31 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-08-07 07:09:04 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-core-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-core-simple</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-core-quarkus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-07-30 10:31:31 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
2022-08-07 07:09:04 +03:00
|
|
|
<artifactId>telegram-consumer-main</artifactId>
|
2022-07-30 10:31:31 +03:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-08-07 07:09:04 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-consumer-simple</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-consumer-quarkus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-sender-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-sender-simple</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-sender-quarkus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-08-02 21:56:19 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-consumer</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-sender-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-quarkus-reactive-sender</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
|
|
|
<artifactId>telegram-simple-sender</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-08-07 07:09:04 +03:00
|
|
|
<!--godfather-->
|
2022-07-30 10:31:31 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
2022-08-07 07:09:04 +03:00
|
|
|
<artifactId>bot-domain-main</artifactId>
|
2022-07-30 10:31:31 +03:00
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
2023-02-17 17:58:28 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-domain-quarkus</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-domain-simple</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
2022-08-07 07:09:04 +03:00
|
|
|
|
2020-11-15 20:16:50 +03:00
|
|
|
<dependency>
|
2022-01-25 10:28:54 +03:00
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
2022-08-07 07:09:04 +03:00
|
|
|
<artifactId>bot-context-main</artifactId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<version>${godfather.core.ver}</version>
|
2020-11-15 20:16:50 +03:00
|
|
|
</dependency>
|
2022-08-07 07:09:04 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-context-simple</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-context-quarkus</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-core-main</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-core-simple</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-core-quarkus</artifactId>
|
|
|
|
<version>${godfather.core.ver}</version>
|
|
|
|
</dependency>
|
|
|
|
<!--/godfather-->
|
2020-11-15 20:16:50 +03:00
|
|
|
|
2022-07-30 10:31:31 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-utils</artifactId>
|
|
|
|
<version>${haiti.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-15 20:16:50 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>telegrambots</artifactId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<version>${telegrambots.ver}</version>
|
2020-11-15 20:16:50 +03:00
|
|
|
</dependency>
|
2022-08-07 07:09:04 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>telegrambots-meta</artifactId>
|
|
|
|
<version>${telegrambots.ver}</version>
|
|
|
|
</dependency>
|
2020-11-15 20:16:50 +03:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>telegrambots-abilities</artifactId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<version>${telegrambots.ver}</version>
|
2020-11-15 20:16:50 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.telegram</groupId>
|
|
|
|
<artifactId>telegrambotsextensions</artifactId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<version>${telegrambots.ver}</version>
|
2020-11-15 20:16:50 +03:00
|
|
|
</dependency>
|
2023-03-17 03:16:18 +03:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.spec.javax.ws.rs</groupId>
|
|
|
|
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
|
|
|
|
<version>2.0.1.Final</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.smallrye.reactive</groupId>
|
|
|
|
<artifactId>smallrye-mutiny-vertx-core</artifactId>
|
|
|
|
<version>${smallrye.mutiny.vertx.core.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.smallrye.reactive</groupId>
|
|
|
|
<artifactId>smallrye-mutiny-vertx-core</artifactId>
|
|
|
|
<version>${smallrye.mutiny.vertx.core.version}</version>
|
|
|
|
</dependency>
|
2023-03-26 17:42:44 +03:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>2.14.2</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-15 20:16:50 +03:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2023-03-15 20:07:48 +03:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
<version>1.18.26</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-01-25 10:28:54 +03:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>${plugin.nexus.staging.ver}</version>
|
2022-04-14 15:34:29 +03:00
|
|
|
<extensions>true</extensions>
|
2022-01-25 10:28:54 +03:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.source.ver}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.javadoc.ver}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.gpg.ver}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.compiler.ver}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-12-18 17:33:47 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.release.ver}</version>
|
|
|
|
<configuration>
|
2023-01-17 03:01:39 +03:00
|
|
|
<preparationGoals>clean install</preparationGoals>
|
2022-12-18 17:33:47 +03:00
|
|
|
<tagNameFormat>v.@{project.version}</tagNameFormat>
|
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
|
|
<pushChanges>false</pushChanges>
|
|
|
|
<localCheckout>true</localCheckout>
|
2023-01-17 03:01:39 +03:00
|
|
|
<signTag>true</signTag>
|
2022-12-18 17:33:47 +03:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-01-25 10:28:54 +03:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-05-26 08:53:04 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-04-08 21:40:35 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
2023-01-15 16:37:24 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-01-25 10:28:54 +03:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-11-05 01:48:43 +03:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2023-01-15 16:37:24 +03:00
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
2020-11-05 01:48:43 +03:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2020-11-05 01:48:43 +03:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-01-25 10:28:54 +03:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2020-11-05 01:48:43 +03:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2023-01-17 02:53:11 +03:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>release-struchkov-nexus</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<serverId>struchkov-nexus</serverId>
|
|
|
|
<nexusUrl>https://nexus.struchkov.dev/nexus/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
<skipStaging>true</skipStaging>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2020-11-05 01:48:43 +03:00
|
|
|
</build>
|
|
|
|
</profile>
|
2023-01-15 16:37:24 +03:00
|
|
|
<profile>
|
|
|
|
<id>snapshot</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<serverId>struchkov-nexus</serverId>
|
|
|
|
<nexusUrl>https://nexus.struchkov.dev/nexus/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2020-11-05 01:48:43 +03:00
|
|
|
</profiles>
|
2020-11-05 01:25:19 +03:00
|
|
|
|
2023-01-15 16:37:24 +03:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>struchkov-nexus-release</id>
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-releases/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>struchkov-nexus-snapshot</id>
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-snapshots/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2022-01-25 10:28:54 +03:00
|
|
|
|
|
|
|
<distributionManagement>
|
2023-01-15 16:37:24 +03:00
|
|
|
<repository>
|
|
|
|
<id>struchkov-nexus-release</id>
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-releases/</url>
|
|
|
|
</repository>
|
2022-01-25 10:28:54 +03:00
|
|
|
<snapshotRepository>
|
2023-01-15 16:37:24 +03:00
|
|
|
<id>struchkov-nexus-snapshot</id>
|
|
|
|
<url>https://nexus.struchkov.dev/repository/maven-snapshots/</url>
|
2022-01-25 10:28:54 +03:00
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2020-11-15 20:16:50 +03:00
|
|
|
|
2023-01-15 16:37:24 +03:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://git.struchkov.dev/Godfather-Bots/telegram-bot.git</connection>
|
|
|
|
<url>https://git.struchkov.dev/Godfather-Bots/telegram-bot</url>
|
|
|
|
<developerConnection>scm:git:https://git.struchkov.dev/Godfather-Bots/telegram-bot.git</developerConnection>
|
2023-04-24 10:02:36 +03:00
|
|
|
<tag>v.0.0.60</tag>
|
2023-01-15 16:37:24 +03:00
|
|
|
</scm>
|
|
|
|
|
2020-11-15 20:16:50 +03:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>uPagge</id>
|
|
|
|
<name>Struchkov Mark</name>
|
2022-01-25 10:28:54 +03:00
|
|
|
<email>mark@struchkov.dev</email>
|
2023-01-15 16:37:24 +03:00
|
|
|
<url>https://mark.struchkov.dev</url>
|
2020-11-15 20:16:50 +03:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2020-11-05 01:25:19 +03:00
|
|
|
</project>
|