pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <packaging>pom</packaging>
  7. <modules>
  8. <module>game-module</module>
  9. <module>game-data</module>
  10. <module>game-platform</module>
  11. <module>game-back</module>
  12. <module>game-gs-data</module>
  13. </modules>
  14. <parent>
  15. <groupId>com.zanxiang</groupId>
  16. <artifactId>microservices-parent</artifactId>
  17. <version>0.0.6-SNAPSHOT</version>
  18. <relativePath/>
  19. </parent>
  20. <groupId>com.zanxiang.game</groupId>
  21. <artifactId>game-center</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. <properties>
  24. <netty.version>4.2.2.Final</netty.version>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>io.netty</groupId>
  30. <artifactId>netty-bom</artifactId>
  31. <version>${netty.version}</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. </project>