pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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>vip.xiaonuo</groupId>
  8. <artifactId>OnlineEducation</artifactId>
  9. <version>2.0.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>education-server</artifactId>
  13. <packaging>pom</packaging>
  14. <description>依赖服务模块</description>
  15. <modules>
  16. <!-- Actuator监控应用启动组件 -->
  17. <module>education-actuator-app</module>
  18. <!-- Gateway网关应用启动组件 -->
  19. <module>education-gateway-app</module>
  20. <!-- Sentinel流量保护应用启动组件 -->
  21. <module>education-sentinel-app</module>
  22. <!-- XxlJob分布式任务调度应用启动组件 -->
  23. <module>education-xxl-job-app</module>
  24. </modules>
  25. </project>