gitlab-notification/gitlab-app/pom.xml
Struchkov Mark 03b8675c78
All checks were successful
continuous-integration/drone/push Build is passing
Переход на SpringBoot 3.0.1
Исправление бага с таймаутом у OkHttp3
2023-01-16 22:37:41 +03:00

72 lines
2.3 KiB
XML

<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>gitlab-bot</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>gitlab-app</artifactId>
<name>Gitlab Notification Bot</name>
<description>Notifications about Gitlab Server events in Telegram</description>
<url>https://git.struchkov.dev/Telegram-Bots/gitlab-notification</url>
<dependencies>
<dependency>
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>bot-core</artifactId>
</dependency>
<dependency>
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>bot-data</artifactId>
</dependency>
<dependency>
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>telegram-bot</artifactId>
</dependency>
<dependency>
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>gitlab-sdk</artifactId>
</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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<finalName>gitlab-notification</finalName>
</configuration>
</plugin>
</plugins>
</build>
</project>