godfather/bot-context/pom.xml

52 lines
1.7 KiB
XML
Raw Normal View History

2021-11-30 12:33:09 +03:00
<?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"
2021-11-30 12:33:09 +03:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2021-12-01 11:17:08 +03:00
<modelVersion>4.0.0</modelVersion>
2021-11-30 12:33:09 +03:00
<parent>
<groupId>dev.struchkov.godfather</groupId>
<artifactId>godfather-bot</artifactId>
2022-12-18 04:34:17 +03:00
<version>0.0.33-SNAPSHOT</version>
2021-11-30 12:33:09 +03:00
</parent>
<artifactId>bot-context</artifactId>
<packaging>pom</packaging>
<modules>
<module>bot-context-main</module>
<module>bot-context-simple</module>
<module>bot-context-quarkus</module>
</modules>
2021-12-01 09:30:31 +03:00
<name>Bot Context</name>
<description>Доменные сущности, интерфейсы, для библиотеки Godfather</description>
2022-01-25 10:12:54 +03:00
2021-11-30 12:33:09 +03:00
<dependencies>
<dependency>
<groupId>dev.struchkov</groupId>
<artifactId>autoresponder</artifactId>
</dependency>
2021-11-30 12:33:09 +03:00
<dependency>
2022-04-29 01:21:34 +03:00
<groupId>dev.struchkov.haiti</groupId>
<artifactId>haiti-utils</artifactId>
2021-11-30 12:33:09 +03:00
</dependency>
2021-11-30 12:33:09 +03:00
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2022-04-29 01:21:34 +03:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</dependency>
2021-11-30 12:33:09 +03:00
</dependencies>
</project>