pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.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-bi-api</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>
  14. bi 模块 API,暴露给其它模块调用
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.iocoder.boot</groupId>
  19. <artifactId>yudao-module-system-api</artifactId>
  20. <version>${revision}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.iocoder.boot</groupId>
  24. <artifactId>yudao-module-crm-api</artifactId>
  25. <version>${revision}</version>
  26. </dependency>
  27. <!-- 业务组件 -->
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-spring-boot-starter-biz-ip</artifactId>
  35. </dependency>
  36. <!-- Web 相关 -->
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.iocoder.boot</groupId>
  43. <artifactId>yudao-spring-boot-starter-security</artifactId>
  44. </dependency>
  45. <!-- DB 相关 -->
  46. <dependency>
  47. <groupId>cn.iocoder.boot</groupId>
  48. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  49. </dependency>
  50. <!-- 工具类相关 -->
  51. <dependency>
  52. <groupId>cn.iocoder.boot</groupId>
  53. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.iocoder.boot</groupId>
  57. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  58. </dependency>
  59. <!-- Test 测试相关 -->
  60. <dependency>
  61. <groupId>cn.iocoder.boot</groupId>
  62. <artifactId>yudao-spring-boot-starter-test</artifactId>
  63. </dependency>
  64. </dependencies>
  65. </project>