pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.iocoder.boot</groupId>
  7. <artifactId>yudao-module-crm</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-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.iocoder.boot</groupId>
  20. <artifactId>yudao-module-system-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-module-crm-api</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-module-bpm-api</artifactId>
  31. <version>${revision}</version>
  32. </dependency>
  33. <!-- 业务组件 -->
  34. <dependency>
  35. <groupId>cn.iocoder.boot</groupId>
  36. <artifactId>yudao-spring-boot-starter-biz-ip</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  41. </dependency>
  42. <!-- Web 相关 -->
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-spring-boot-starter-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.iocoder.boot</groupId>
  49. <artifactId>yudao-spring-boot-starter-security</artifactId>
  50. </dependency>
  51. <!-- DB 相关 -->
  52. <dependency>
  53. <groupId>cn.iocoder.boot</groupId>
  54. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  55. </dependency>
  56. <!-- 工具类相关 -->
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  60. </dependency>
  61. <!-- Test 测试相关 -->
  62. <dependency>
  63. <groupId>cn.iocoder.boot</groupId>
  64. <artifactId>yudao-spring-boot-starter-test</artifactId>
  65. </dependency>
  66. </dependencies>
  67. </project>