pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <relativePath></relativePath>
  11. </parent>
  12. <packaging>pom</packaging>
  13. <description>FM基础服务</description>
  14. <groupId>com.persagy</groupId>
  15. <artifactId>fm-cloud</artifactId>
  16. <modules>
  17. <module>fm-calendar</module>
  18. <module>fm-device</module>
  19. <module>fm-person</module>
  20. <module>fm-qrcode</module>
  21. <module>fm-scheduling</module>
  22. <module>fm-supplier</module>
  23. </modules>
  24. <properties>
  25. <fm-server.version>3.0.0</fm-server.version>
  26. <fm-common.version>3.0.0</fm-common.version>
  27. </properties>
  28. <repositories>
  29. <repository>
  30. <id>integrated</id>
  31. <name>releases Repository</name>
  32. <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
  33. </repository>
  34. </repositories>
  35. <dependencies>
  36. <!-- 项目启动 -->
  37. <dependency>
  38. <groupId>com.persagy</groupId>
  39. <artifactId>fm-server</artifactId>
  40. <version>${fm-server.version}</version>
  41. </dependency>
  42. <!-- fm 工具包 -->
  43. <dependency>
  44. <groupId>com.persagy</groupId>
  45. <artifactId>fm-common</artifactId>
  46. <version>${fm-common.version}</version>
  47. </dependency>
  48. </dependencies>
  49. </project>