pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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-mall</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>yudao-module-promotion-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. market模块,主要实现营销相关功能
  16. 例如:营销活动、banner广告、优惠券、优惠码等功能。
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.iocoder.boot</groupId>
  21. <artifactId>yudao-module-promotion-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-module-product-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.iocoder.boot</groupId>
  31. <artifactId>yudao-module-trade-api</artifactId>
  32. <version>${revision}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.iocoder.boot</groupId>
  36. <artifactId>yudao-module-member-api</artifactId>
  37. <version>${revision}</version>
  38. </dependency>
  39. <!-- 业务组件 -->
  40. <dependency>
  41. <groupId>cn.iocoder.boot</groupId>
  42. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-biz-weixin</artifactId>
  51. </dependency>
  52. <!-- Web 相关 -->
  53. <dependency>
  54. <groupId>cn.iocoder.boot</groupId>
  55. <artifactId>yudao-spring-boot-starter-web</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-security</artifactId>
  60. </dependency>
  61. <!-- DB 相关 -->
  62. <dependency>
  63. <groupId>cn.iocoder.boot</groupId>
  64. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  65. </dependency>
  66. <!-- Test 测试相关 -->
  67. <dependency>
  68. <groupId>cn.iocoder.boot</groupId>
  69. <artifactId>yudao-spring-boot-starter-test</artifactId>
  70. </dependency>
  71. <!-- 工具类相关 -->
  72. <dependency>
  73. <groupId>cn.iocoder.boot</groupId>
  74. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  79. </dependency>
  80. </dependencies>
  81. </project>