gitlab-notification/gitlab-app/pom.xml

67 lines
2.2 KiB
XML
Raw Normal View History

<?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>
<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>
<version>2.0.0-SNAPSHOT</version>
</parent>
2021-01-13 20:39:37 +03:00
<artifactId>gitlab-app</artifactId>
2022-01-26 10:56:18 +03:00
<name>Gitlab Notification Bot</name>
<description>Notifications about Gitlab Server events in Telegram</description>
<url>https://git.struchkov.dev/Telegram-Bots/gitlab-notification</url>
2020-11-16 12:56:31 +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>
</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>
</dependency>
<dependency>
2022-01-26 10:56:18 +03:00
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>telegram-bot</artifactId>
</dependency>
2020-09-22 14:35:27 +03:00
<dependency>
2024-08-23 23:37:36 +03:00
<groupId>dev.struchkov.sdk.gitlab</groupId>
<artifactId>gitlab-sdk-spring-boot-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<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>
<finalName>gitlab-notification</finalName>
2020-09-18 08:34:55 +03:00
</configuration>
</plugin>
</plugins>
</build>
</project>