telegram-bot/telegram-context/telegram-context-quarkus/pom.xml

38 lines
1.4 KiB
XML
Raw Permalink Normal View History

2022-08-02 21:56:19 +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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2022-12-13 22:03:48 +03:00
<modelVersion>4.0.0</modelVersion>
2022-08-02 21:56:19 +03:00
<parent>
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-context</artifactId>
<version>1.5.3-SNAPSHOT</version>
2022-08-02 21:56:19 +03:00
</parent>
<artifactId>telegram-context-quarkus</artifactId>
2022-08-02 21:56:19 +03:00
<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-context-quarkus</artifactId>
2022-08-02 21:56:19 +03:00
</dependency>
<dependency>
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-context-main</artifactId>
2022-08-02 21:56:19 +03:00
</dependency>
2023-04-24 03:03:26 +03:00
<dependency>
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-domain-quarkus</artifactId>
</dependency>
2022-08-02 21:56:19 +03:00
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots-meta</artifactId>
2022-08-02 21:56:19 +03:00
</dependency>
</dependencies>
</project>