pom.xml 894 B

12345678910111213141516171819202122232425
  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. <parent>
  6. <groupId>cn.newfeifan.zx</groupId>
  7. <artifactId>feifan</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modules>
  11. <module>feifan-module-crm-api</module>
  12. <module>feifan-module-crm-biz</module>
  13. </modules>
  14. <modelVersion>4.0.0</modelVersion>
  15. <artifactId>feifan-module-crm</artifactId>
  16. <packaging>pom</packaging>
  17. <name>${project.artifactId}</name>
  18. <description>
  19. crm 包下,客户关系管理(Customer Relationship Management)。
  20. 例如说:客户、联系人、商机、合同、回款等等
  21. </description>
  22. </project>