2022-08-07 07:07:10 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-03-29 01:19:07 +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">
|
2023-02-17 17:57:45 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-08-07 07:07:10 +03:00
|
|
|
<parent>
|
|
|
|
<artifactId>bot-domain</artifactId>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
2023-11-18 20:57:05 +03:00
|
|
|
<version>1.0.0</version>
|
2022-08-07 07:07:10 +03:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>bot-domain-main</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
|
|
<artifactId>bot-exception</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-03-26 17:37:34 +03:00
|
|
|
<groupId>dev.struchkov.haiti</groupId>
|
|
|
|
<artifactId>haiti-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2022-08-07 07:07:10 +03:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|