gitlab-notification/bot-core/pom.xml

93 lines
2.9 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>1.0.0</version>
</parent>
<artifactId>bot-core</artifactId>
<dependencies>
<dependency>
2022-01-26 10:56:18 +03:00
<groupId>dev.struchkov.haiti.filter</groupId>
2020-11-15 20:39:35 +03:00
<artifactId>haiti-filter-criteria</artifactId>
</dependency>
2020-10-31 03:48:19 +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>
2020-10-31 03:48:19 +03:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
2022-01-26 10:56:18 +03:00
<groupId>dev.struchkov.bot.gitlab</groupId>
<artifactId>gitlab-sdk</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
<version>4.0.2</version>
</dependency>
</dependencies>
</project>