pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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-module-crm</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-module-crm-biz</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>
  14. crm 包下,客户关系管理(Customer Relationship Management)。
  15. 例如说:客户、联系人、商机、合同、回款等等
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.newfeifan.zx</groupId>
  20. <artifactId>feifan-module-system-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.newfeifan.zx</groupId>
  25. <artifactId>feifan-module-crm-api</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. <!-- 业务组件 -->
  29. <dependency>
  30. <groupId>cn.newfeifan.zx</groupId>
  31. <artifactId>feifan-spring-boot-starter-biz-operatelog</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.newfeifan.zx</groupId>
  35. <artifactId>feifan-spring-boot-starter-biz-ip</artifactId>
  36. </dependency>
  37. <!-- Web 相关 -->
  38. <dependency>
  39. <groupId>cn.newfeifan.zx</groupId>
  40. <artifactId>feifan-spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.newfeifan.zx</groupId>
  44. <artifactId>feifan-spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <!-- DB 相关 -->
  47. <dependency>
  48. <groupId>cn.newfeifan.zx</groupId>
  49. <artifactId>feifan-spring-boot-starter-mybatis</artifactId>
  50. </dependency>
  51. <!-- 工具类相关 -->
  52. <dependency>
  53. <groupId>cn.newfeifan.zx</groupId>
  54. <artifactId>feifan-spring-boot-starter-excel</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.newfeifan.zx</groupId>
  58. <artifactId>feifan-spring-boot-starter-biz-dict</artifactId>
  59. </dependency>
  60. <!-- Test 测试相关 -->
  61. <dependency>
  62. <groupId>cn.newfeifan.zx</groupId>
  63. <artifactId>feifan-spring-boot-starter-test</artifactId>
  64. </dependency>
  65. </dependencies>
  66. </project>