pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.iohao.mmo</groupId>
  8. <artifactId>game</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <relativePath>../../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>common-provide</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <!-- 模拟客户端请求模块 https://www.yuque.com/iohao/game/tc83ud -->
  20. <dependency>
  21. <groupId>com.iohao.game</groupId>
  22. <artifactId>light-client</artifactId>
  23. <version>${ioGame.version}</version>
  24. </dependency>
  25. <!-- protobuf 模块 https://www.yuque.com/iohao/game/vpe2t6 -->
  26. <dependency>
  27. <groupId>com.iohao.game</groupId>
  28. <artifactId>light-jprotobuf</artifactId>
  29. <version>${ioGame.version}</version>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  32. <dependency>
  33. <groupId>com.alibaba.fastjson2</groupId>
  34. <artifactId>fastjson2</artifactId>
  35. <version>2.0.38</version>
  36. </dependency>
  37. </dependencies>
  38. </project>