<?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"> <parent> <artifactId>game</artifactId> <groupId>com.game</groupId> <version>3.8.7</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>game-business</artifactId> <description> business业务处理 </description> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> <!-- 通用工具--> <dependency> <groupId>com.game</groupId> <artifactId>game-common</artifactId> </dependency> <dependency> <groupId>com.wengying666</groupId> <artifactId>IMSocket</artifactId> <version>2.5.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.13</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5.13</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-core</artifactId> <version>3.0.0</version> <scope>compile</scope> </dependency> <!-- 业务模块--> <dependency> <groupId>com.game</groupId> <artifactId>game-system</artifactId> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>