123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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>com.iohao.mmo</groupId>
- <artifactId>game</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <artifactId>common-provide</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>
- <!-- 模拟客户端请求模块 https://www.yuque.com/iohao/game/tc83ud -->
- <dependency>
- <groupId>com.iohao.game</groupId>
- <artifactId>light-client</artifactId>
- <version>${ioGame.version}</version>
- </dependency>
- <!-- protobuf 模块 https://www.yuque.com/iohao/game/vpe2t6 -->
- <dependency>
- <groupId>com.iohao.game</groupId>
- <artifactId>light-jprotobuf</artifactId>
- <version>${ioGame.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>2.0.38</version>
- </dependency>
- </dependencies>
- </project>
|