telegram-bot/telegram-core/pom.xml

47 lines
1.5 KiB
XML
Raw Normal View History

2020-11-05 01:25:19 +03:00
<?xml version="1.0" encoding="UTF-8"?>
2020-11-15 20:16:50 +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">
2020-11-05 01:25:19 +03:00
<modelVersion>4.0.0</modelVersion>
2020-11-15 20:16:50 +03:00
<parent>
<groupId>dev.struchkov.godfather.telegram</groupId>
2022-01-25 10:28:54 +03:00
<artifactId>telegram-bot</artifactId>
2022-08-02 21:56:19 +03:00
<version>0.0.30</version>
2020-11-15 20:16:50 +03:00
</parent>
2020-11-05 01:25:19 +03:00
2022-01-25 10:28:54 +03:00
<artifactId>telegram-core</artifactId>
2020-11-05 01:25:19 +03:00
2020-11-15 20:16:50 +03:00
<name>Telegram Core</name>
<description>Allows you to create bots for Telegram</description>
2022-01-25 10:28:54 +03:00
2020-11-05 01:25:19 +03:00
<dependencies>
<dependency>
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-domain</artifactId>
</dependency>
<dependency>
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-context</artifactId>
</dependency>
2020-11-05 01:25:19 +03:00
<dependency>
2022-01-25 10:28:54 +03:00
<groupId>dev.struchkov.godfather</groupId>
<artifactId>bot-core</artifactId>
2020-11-05 01:25:19 +03:00
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots</artifactId>
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots-abilities</artifactId>
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambotsextensions</artifactId>
</dependency>
</dependencies>
</project>