pom.xml 986 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>cn.itlym.platform</groupId>
  7. <artifactId>shoulder-system-center</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>system-modules</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <!-- TODO 系统配置后续使用专门的配置中心管理,如 nacos、apollo -->
  15. <module>system-config</module>
  16. <module>system-dictionary</module>
  17. <module>system-error-code</module>
  18. </modules>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.itlym.platform</groupId>
  22. <artifactId>system-core</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>