pom.xml 853 B

12345678910111213141516171819202122
  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>fm-parent</relativePath>
  11. </parent>
  12. <artifactId>fm-basics</artifactId>
  13. <packaging>pom</packaging>
  14. <description>FM组件项目,只提供jar,不提供服务</description>
  15. <modules>
  16. <module>fm-parent</module>
  17. <module>fm-server</module>
  18. <module>fm-common</module>
  19. <module>fm-translate</module>
  20. <module>fm-mybatis</module>
  21. </modules>
  22. </project>