2020-02-03 12:22:53 +03: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"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2022-01-26 10:56:18 +03:00
|
|
|
<version>2.6.2</version>
|
2020-02-03 12:22:53 +03:00
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
2022-01-26 10:56:18 +03:00
|
|
|
|
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
|
|
|
<artifactId>gitlab-bot</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<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>
|
|
|
|
<url>https://github.com/uPagge/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>
|
|
|
|
|
|
|
|
<gitlab.core.version>3.1.0</gitlab.core.version>
|
|
|
|
<gitlab.app.version>3.1.0</gitlab.app.version>
|
|
|
|
<gitlab.sdk.version>3.1.0</gitlab.sdk.version>
|
|
|
|
<gitlab.context.version>3.1.0</gitlab.context.version>
|
|
|
|
<gitlab.data.version>3.1.0</gitlab.data.version>
|
|
|
|
<gitlab.telegram.version>3.1.0</gitlab.telegram.version>
|
|
|
|
<gitlab.core.version>3.1.0</gitlab.core.version>
|
|
|
|
|
|
|
|
<haiti.ver>0.0.4</haiti.ver>
|
|
|
|
<godfather.telegram.core.version>0.0.2</godfather.telegram.core.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<javax.persistance.version>2.2</javax.persistance.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<hibernate.jpa-modelgen.version>6.0.0.Alpha5</hibernate.jpa-modelgen.version>
|
|
|
|
<google.guava.version>28.2-jre</google.guava.version>
|
2022-01-26 10:56:18 +03:00
|
|
|
<jackson.databind.version>2.13.1</jackson.databind.version>
|
|
|
|
<jackson.datatype.jsr310.version>2.13.1</jackson.datatype.jsr310.version>
|
|
|
|
|
|
|
|
<plugin.maven.compiler.ver>3.9.0</plugin.maven.compiler.ver>
|
|
|
|
<plugin.nexus.staging.ver>1.6.8</plugin.nexus.staging.ver>
|
|
|
|
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
|
|
|
|
<plugin.maven.javadoc.ver>3.3.1</plugin.maven.javadoc.ver>
|
|
|
|
<plugin.maven.gpg.ver>3.0.1</plugin.maven.gpg.ver>
|
2020-02-03 12:22:53 +03:00
|
|
|
</properties>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-01-26 10:56:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-bom</artifactId>
|
|
|
|
<version>${haiti.ver}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
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>
|
2021-01-13 20:55:10 +03:00
|
|
|
<version>${gitlab.core.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>
|
2021-01-13 20:39:37 +03:00
|
|
|
<version>${gitlab.core.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>
|
2021-01-13 20:39:37 +03:00
|
|
|
<version>${gitlab.telegram.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>
|
|
|
|
<version>${gitlab.context.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>
|
|
|
|
<version>${gitlab.sdk.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>
|
|
|
|
<version>${gitlab.data.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-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>telegram-core</artifactId>
|
|
|
|
<version>${godfather.telegram.core.version}</version>
|
2020-11-09 21:49:02 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-11-15 20:39:35 +03:00
|
|
|
<!-- /SADTECH -->
|
|
|
|
<!-- БД -->
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.hibernate.orm</groupId>
|
|
|
|
<artifactId>hibernate-jpamodelgen</artifactId>
|
|
|
|
<version>${hibernate.jpa-modelgen.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${liquibase.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-11-15 20:39:35 +03:00
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
|
|
<version>${javax.persistance.version}</version>
|
|
|
|
</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
|
|
|
<!-- /утилиты -->
|
|
|
|
<!-- spring -->
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
2020-02-03 12:22:53 +03:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2020-09-17 17:09:18 +03:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>2.2.4.RELEASE</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-15 20:39:35 +03:00
|
|
|
<!-- /spring -->
|
|
|
|
<!-- http -->
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${okhttp3.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
2022-01-26 10:56:18 +03:00
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.databind.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2022-01-26 10:56:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
<version>${jackson.datatype.jsr310.version}</version>
|
|
|
|
</dependency>
|
2020-11-15 20:39:35 +03:00
|
|
|
<!-- /http -->
|
2020-09-22 14:35:27 +03:00
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2020-11-06 11:25:11 +03:00
|
|
|
<build>
|
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>
|
|
|
|
<version>3.9.0</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>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2020-11-06 11:25:11 +03:00
|
|
|
</build>
|
|
|
|
|
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>
|