pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <artifactId>yudao-module-mp</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-mp-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. mp 模块,我们放微信微信公众号。
  16. 例如说:提供微信公众号的账号、菜单、粉丝、标签、消息、自动回复、素材、模板通知、运营数据等功能
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.iocoder.boot</groupId>
  21. <artifactId>yudao-module-mp-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-module-system-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.iocoder.boot</groupId>
  31. <artifactId>yudao-module-infra-api</artifactId>
  32. <version>${revision}</version>
  33. </dependency>
  34. <!-- 业务组件 -->
  35. <dependency>
  36. <groupId>cn.iocoder.boot</groupId>
  37. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.iocoder.boot</groupId>
  41. <artifactId>yudao-spring-boot-starter-biz-weixin</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  46. </dependency>
  47. <!-- Web 相关 -->
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-security</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-validation</artifactId>
  55. </dependency>
  56. <!-- DB 相关 -->
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.iocoder.boot</groupId>
  63. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  64. </dependency>
  65. <!-- 消息队列相关 -->
  66. <dependency>
  67. <groupId>cn.iocoder.boot</groupId>
  68. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  69. </dependency>
  70. <!-- Test 测试相关 -->
  71. <dependency>
  72. <groupId>cn.iocoder.boot</groupId>
  73. <artifactId>yudao-spring-boot-starter-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <!-- 工具类相关 -->
  77. <dependency>
  78. <groupId>cn.iocoder.boot</groupId>
  79. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  80. </dependency>
  81. </dependencies>
  82. </project>