pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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>com.persagy</groupId>
  8. <artifactId>fm-parent</artifactId>
  9. <version>3.0.0</version>
  10. </parent>
  11. <packaging>pom</packaging>
  12. <description>FM基础服务</description>
  13. <groupId>com.persagy</groupId>
  14. <artifactId>fm-cloud</artifactId>
  15. <modules>
  16. <module>fm-calendar</module>
  17. <module>fm-device</module>
  18. <module>fm-person</module>
  19. <module>fm-qrcode</module>
  20. <module>fm-scheduling</module>
  21. <module>fm-supplier</module>
  22. </modules>
  23. <dependencies>
  24. <!-- 项目启动 -->
  25. <dependency>
  26. <groupId>com.persagy</groupId>
  27. <artifactId>fm-server</artifactId>
  28. </dependency>
  29. <!-- fm 工具包 -->
  30. <dependency>
  31. <groupId>com.persagy</groupId>
  32. <artifactId>fm-common</artifactId>
  33. </dependency>
  34. <!-- 集成框架工具包 -->
  35. <dependency>
  36. <groupId>com.persagy</groupId>
  37. <artifactId>integrated-common-core</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>