pom.xml 874 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.5.14</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.gd</groupId>
  12. <artifactId>server</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>pom</packaging>
  15. <name>server</name>
  16. <description>高达后端服务</description>
  17. <modules>
  18. <!-- 业务模块 -->
  19. <module>business</module>
  20. <!-- 流程模块 -->
  21. <module>workflow</module>
  22. </modules>
  23. </project>