2020-09-17 17:09:18 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2022-01-26 10:56:18 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-17 17:09:18 +03:00
|
|
|
<parent>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>gitlab-bot</artifactId>
|
2022-01-26 10:56:18 +03:00
|
|
|
<version>3.1.0</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</parent>
|
|
|
|
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>gitlab-app</artifactId>
|
|
|
|
<version>${gitlab.app.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2022-01-26 10:56:18 +03:00
|
|
|
<name>Gitlab Notification Bot</name>
|
|
|
|
<description>Notifications about Gitlab Server events in Telegram</description>
|
2020-11-16 12:56:31 +03:00
|
|
|
<url>https://github.com/uPagge/bitbucketbot</url>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependencies>
|
|
|
|
<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>
|
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>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2020-09-17 17:09:18 +03:00
|
|
|
<artifactId>telegram-bot</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-22 14:35:27 +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>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2021-01-14 13:10:53 +03:00
|
|
|
<dependency>
|
2022-01-26 10:56:18 +03:00
|
|
|
<groupId>dev.struchkov.haiti.utils</groupId>
|
|
|
|
<artifactId>haiti-utils-network</artifactId>
|
2021-01-14 13:10:53 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2020-09-18 08:34:55 +03:00
|
|
|
<configuration>
|
2021-01-14 13:10:53 +03:00
|
|
|
<finalName>gitlab-notification</finalName>
|
2020-09-18 08:34:55 +03:00
|
|
|
</configuration>
|
2020-09-17 17:09:18 +03:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|