pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <dependency>
  38. <groupId>com.iohao.mmo</groupId>
  39. <artifactId>common-core</artifactId>
  40. <version>${project.parent.version}</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct -->
  43. <dependency>
  44. <groupId>org.mapstruct</groupId>
  45. <artifactId>mapstruct</artifactId>
  46. <version>${org.mapstruct.version}</version>
  47. </dependency>
  48. </dependencies>
  49. </project>