telegram-bot/telegram-core/pom.xml

42 lines
1.3 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>
2022-01-25 10:28:54 +03:00
<groupId>dev.struchkov.godfather</groupId>
<artifactId>telegram-bot</artifactId>
2022-04-29 01:27:43 +03:00
<version>0.0.4</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
<properties>
<skip.deploy>false</skip.deploy>
</properties>
2020-11-15 20:16:50 +03:00
2020-11-05 01:25:19 +03:00
<dependencies>
<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>