pom.xml 782 B

12345678910111213141516171819202122232425262728293031323334
  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. <groupId>com.github.microservice</groupId>
  7. <artifactId>centers</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <name>${project.artifactId}</name>
  11. <description>项目配置</description>
  12. <modules>
  13. <!-- 平台 -->
  14. <module>ApplicationCenter/Gateway</module>
  15. <module>ApplicationCenter/Config</module>
  16. <!-- 鉴权中心 -->
  17. <module>AuthCenter</module>
  18. </modules>
  19. </project>