79 lines
2.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>
<artifactId>other-application</artifactId>
<description>应用层,服务实现</description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-client</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-infrastructure</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>component-game</artifactId>
</dependency>
<!-- Game King 必须使用钱包领域枚举判定 GOLD禁止复制魔法值后随钱包协议漂移。 -->
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>live-inner-model</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-inner-api</artifactId>
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots-longpolling</artifactId>
<version>8.0.0</version>
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots-client</artifactId>
<version>8.0.0</version>
</dependency>
<!-- Hutool HTTP 工具类 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
<version>5.8.22</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
<version>5.8.22</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
</dependencies>
<parent>
<artifactId>rc-service-other</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../pom.xml</relativePath>
</parent>
</project>