pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  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. <distributionManagement>
  16. <repository>
  17. <id>persagy</id>
  18. <name>releases Repository</name>
  19. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  20. </repository>
  21. </distributionManagement>
  22. <modules>
  23. <module>fm-parent</module>
  24. <module>fm-server</module>
  25. <module>fm-common</module>
  26. <module>fm-translate</module>
  27. <module>fm-mybatis</module>
  28. <module>fm-screw</module>
  29. </modules>
  30. </project>