telegram-bot/telegram-domain/telegram-domain-main/pom.xml
Struchkov Mark 7134b691ff
Merge branch 'bugfix/answer-save' into develop
# Conflicts:
#	pom.xml
#	telegram-consumer/pom.xml
#	telegram-consumer/telegram-consumer-main/pom.xml
#	telegram-consumer/telegram-consumer-quarkus/pom.xml
#	telegram-consumer/telegram-consumer-simple/pom.xml
#	telegram-context/pom.xml
#	telegram-context/telegram-context-main/pom.xml
#	telegram-context/telegram-context-quarkus/pom.xml
#	telegram-context/telegram-context-simple/pom.xml
#	telegram-core/pom.xml
#	telegram-core/telegram-core-main/pom.xml
#	telegram-core/telegram-core-quarkus/pom.xml
#	telegram-core/telegram-core-simple/pom.xml
#	telegram-domain/pom.xml
#	telegram-domain/telegram-domain-main/pom.xml
#	telegram-domain/telegram-domain-quarkus/pom.xml
#	telegram-domain/telegram-domain-simple/pom.xml
#	telegram-sender/pom.xml
#	telegram-sender/telegram-sender-main/pom.xml
#	telegram-sender/telegram-sender-quarkus/pom.xml
#	telegram-sender/telegram-sender-simple/pom.xml
#	telegram-simple/pom.xml
#	telegram-webhook/pom.xml
#	telegram-webhook/telegram-webhook-quarkus/pom.xml
2023-05-23 16:45:44 +03:00

29 lines
1.1 KiB
XML

<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-domain</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>telegram-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-domain-main</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>
</project>