pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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>person-logic</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. <dependency>
  20. <groupId>com.iohao.mmo</groupId>
  21. <artifactId>person-provide</artifactId>
  22. <version>${project.parent.version}</version>
  23. </dependency>
  24. <!-- 公共核心模块 -->
  25. <dependency>
  26. <groupId>com.iohao.mmo</groupId>
  27. <artifactId>common-core</artifactId>
  28. <version>${project.parent.version}</version>
  29. </dependency>
  30. </dependencies>
  31. </project>