73 lines
2.1 KiB
XML
73 lines
2.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>
|
|
<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>
|
|
|
|
<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>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<parent>
|
|
<artifactId>rc-service-other</artifactId>
|
|
<groupId>com.red.circle</groupId>
|
|
<version>${revision}</version>
|
|
<relativePath>./../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
</project>
|