2020-10-31 03:48:19 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2022-01-26 10:56:18 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-10-31 03:48:19 +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>
|
2023-03-06 02:59:07 +03:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2020-10-31 03:48:19 +03:00
|
|
|
</parent>
|
|
|
|
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>bot-data</artifactId>
|
2020-10-31 03:48:19 +03:00
|
|
|
|
2021-01-13 20:39:37 +03:00
|
|
|
<name>GitLab Server Data</name>
|
2022-12-20 19:25:51 +03:00
|
|
|
<description>Implementation of the GitLab server version repository layer</description>
|
2020-11-16 12:56:31 +03:00
|
|
|
|
2020-10-31 03:48:19 +03:00
|
|
|
<dependencies>
|
2022-01-26 10:56:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.bot.gitlab</groupId>
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>bot-context</artifactId>
|
2020-10-31 03:48:19 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-12-05 22:25:59 +03:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
2020-10-31 03:48:19 +03:00
|
|
|
</dependency>
|
2022-12-05 11:55:39 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
|
|
|
</dependency>
|
2020-10-31 03:48:19 +03:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|