2020-02-03 12:22:53 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-03-06 02:59:06 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-02-03 12:22:53 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2023-01-16 22:37:41 +03:00
|
|
|
<version>3.0.1</version>
|
2023-03-06 02:59:06 +03:00
|
|
|
<relativePath /> <!-- lookup parent from repository -->
|
2020-02-03 12:22:53 +03:00
|
|
|
</parent>
|
2022-01-26 10:56:18 +03:00
|
|
|
|
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
|
|
|
<artifactId>gitlab-bot</artifactId>
|
2023-03-06 02:59:07 +03:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2022-01-26 10:56:18 +03:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<modules>
|
2021-01-13 20:39:37 +03:00
|
|
|
<module>bot-context</module>
|
2020-09-17 17:09:18 +03:00
|
|
|
<module>telegram-bot</module>
|
2021-01-13 20:39:37 +03:00
|
|
|
<module>gitlab-sdk</module>
|
2020-09-17 17:09:18 +03:00
|
|
|
<module>bot-core</module>
|
2021-04-24 12:49:18 +03:00
|
|
|
<module>gitlab-app</module>
|
2021-01-13 20:39:37 +03:00
|
|
|
<module>bot-data</module>
|
2020-09-17 17:09:18 +03:00
|
|
|
</modules>
|
2020-09-16 06:58:53 +03:00
|
|
|
|
2021-01-13 20:39:37 +03:00
|
|
|
<name>Parent GitLab Notify Bot</name>
|
|
|
|
<description>Notifications about gitlab events in Telegram</description>
|
2023-03-06 02:00:54 +03:00
|
|
|
<url>https://docs.struchkov.dev/gitlab-notification/</url>
|
2020-11-15 21:52:35 +03:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2021-01-13 20:39:37 +03:00
|
|
|
<url>https://github.com/uPagge/gitlab-notification/issues</url>
|
2020-11-15 21:52:35 +03:00
|
|
|
</issueManagement>
|
|
|
|
|
2020-02-03 12:22:53 +03:00
|
|
|
<properties>
|
2022-01-26 10:56:18 +03:00
|
|
|
<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-03-05 19:04:18 +03:00
|
|
|
<godfather.telegram.version>0.0.51</godfather.telegram.version>
|
2023-02-21 12:02:05 +03:00
|
|
|
<haiti.utils.version>2.7.2</haiti.utils.version>
|
|
|
|
<haiti.utils.fields.version>0.0.11</haiti.utils.fields.version>
|
2023-02-18 11:39:03 +03:00
|
|
|
<haiti.filter.version>0.0.5</haiti.filter.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2023-02-18 11:39:03 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/jakarta.persistence/jakarta.persistence-api -->
|
2023-01-16 22:37:41 +03:00
|
|
|
<jakarta.persistance.version>3.1.0</jakarta.persistance.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2023-02-18 11:39:03 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
|
2022-12-03 12:49:25 +03:00
|
|
|
<google.guava.version>31.1-jre</google.guava.version>
|
2022-12-18 22:23:44 +03:00
|
|
|
|
2023-02-18 11:39:03 +03:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
|
|
|
|
<plugin.maven.compiler.ver>3.10.1</plugin.maven.compiler.ver>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
|
2022-12-18 22:23:44 +03:00
|
|
|
<plugin.maven.release.ver>3.0.0-M7</plugin.maven.release.ver>
|
2020-02-03 12:22:53 +03:00
|
|
|
</properties>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2020-11-15 20:39:35 +03:00
|
|
|
<!-- модули проекта -->
|
2020-10-24 12:43:55 +03:00
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>bot-core</artifactId>
|
2022-12-03 12:39:19 +03:00
|
|
|
<version>${project.version}</version>
|
2020-10-24 12:43:55 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:55:10 +03:00
|
|
|
<artifactId>gitlab-core</artifactId>
|
2022-12-03 12:39:19 +03:00
|
|
|
<version>${project.version}</version>
|
2020-11-15 20:39:35 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2020-11-15 20:39:35 +03:00
|
|
|
<artifactId>telegram-bot</artifactId>
|
2022-12-03 12:39:19 +03:00
|
|
|
<version>${project.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-11-06 11:25:11 +03:00
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>bot-context</artifactId>
|
2022-12-03 12:39:19 +03:00
|
|
|
<version>${project.version}</version>
|
2020-11-06 11:25:11 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>gitlab-sdk</artifactId>
|
2022-12-03 12:39:19 +03:00
|
|
|
<version>${project.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>bot-data</artifactId>
|
2022-12-03 12:39:19 +03:00
|
|
|
<version>${project.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-11-15 20:39:35 +03:00
|
|
|
<!-- /модули проекта -->
|
2022-01-26 10:56:18 +03:00
|
|
|
<!-- haiti -->
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-11-09 21:49:02 +03:00
|
|
|
<dependency>
|
2022-12-03 12:39:19 +03:00
|
|
|
<groupId>dev.struchkov.haiti.utils</groupId>
|
|
|
|
<artifactId>haiti-utils-field-constants</artifactId>
|
2023-02-18 11:39:03 +03:00
|
|
|
<version>${haiti.utils.fields.version}</version>
|
2022-12-03 12:39:19 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-utils</artifactId>
|
2023-02-18 11:39:03 +03:00
|
|
|
<version>${haiti.utils.version}</version>
|
2022-12-03 12:39:19 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-exception</artifactId>
|
2023-02-18 11:39:03 +03:00
|
|
|
<version>${haiti.utils.version}</version>
|
2022-12-03 12:39:19 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.haiti.filter</groupId>
|
|
|
|
<artifactId>haiti-filter-criteria</artifactId>
|
2023-02-18 11:39:03 +03:00
|
|
|
<version>${haiti.filter.version}</version>
|
2022-12-03 12:39:19 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather.telegram</groupId>
|
2023-02-18 20:47:01 +03:00
|
|
|
<artifactId>telegram-bot-spring-boot-starter</artifactId>
|
|
|
|
<version>${godfather.telegram.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2022-12-03 12:39:19 +03:00
|
|
|
<!-- /SADTECH -->
|
|
|
|
<!-- БД -->
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
2020-11-15 20:39:35 +03:00
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>${postgresql.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-01-16 22:37:41 +03:00
|
|
|
<groupId>jakarta.persistence</groupId>
|
|
|
|
<artifactId>jakarta.persistence-api</artifactId>
|
|
|
|
<version>${jakarta.persistance.version}</version>
|
2020-11-15 20:39:35 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- /БД -->
|
|
|
|
<!-- утилиты -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${google.guava.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-15 20:39:35 +03:00
|
|
|
<!-- /утилиты -->
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2020-11-06 11:25:11 +03:00
|
|
|
<build>
|
2022-12-18 22:23:44 +03:00
|
|
|
<plugins>
|
2023-02-18 11:39:03 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-12-18 22:23:44 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
2020-11-15 21:52:35 +03:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-02-18 11:39:03 +03:00
|
|
|
<version>${plugin.maven.compiler.ver}</version>
|
2020-11-15 21:52:35 +03:00
|
|
|
<configuration>
|
2022-01-26 10:56:18 +03:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2020-11-15 21:52:35 +03:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-12-18 22:23:44 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.release.ver}</version>
|
|
|
|
<configuration>
|
|
|
|
<preparationGoals>clean compile</preparationGoals>
|
|
|
|
<goals>package</goals>
|
|
|
|
<tagNameFormat>v.@{project.version}</tagNameFormat>
|
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
|
|
<pushChanges>false</pushChanges>
|
|
|
|
<localCheckout>true</localCheckout>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-11-15 21:52:35 +03:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2020-11-06 11:25:11 +03:00
|
|
|
</build>
|
|
|
|
|
2022-12-18 22:23:44 +03:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2023-01-15 16:46:32 +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>
|
|
|
|
|
2023-03-06 02:00:54 +03:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:ssh://git@git.struchkov.dev:222/Telegram-Bots/gitlab-notification.git</connection>
|
|
|
|
<url>https://git.struchkov.dev/Telegram-Bots/gitlab-notification</url>
|
|
|
|
<developerConnection>scm:git:ssh://git@git.struchkov.dev:222/Telegram-Bots/gitlab-notification.git</developerConnection>
|
2023-03-06 02:59:07 +03:00
|
|
|
<tag>HEAD</tag>
|
2023-03-06 02:59:06 +03:00
|
|
|
</scm>
|
2023-03-06 02:00:54 +03:00
|
|
|
|
2020-03-28 06:15:14 +03:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>uPagge</id>
|
|
|
|
<name>Struchkov Mark</name>
|
2022-01-26 10:56:18 +03:00
|
|
|
<email>mark@struchkov.dev</email>
|
|
|
|
<url>https://mark.struchkov.dev</url>
|
2020-03-28 06:15:14 +03:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2020-02-03 12:22:53 +03:00
|
|
|
</project>
|