猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
3.9 KiB

1 week ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.7.0</version>
  9. </parent>
  10. <artifactId>ruoyi-mall</artifactId>
  11. <properties>
  12. <maven.compiler.source>8</maven.compiler.source>
  13. <maven.compiler.target>8</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-common</artifactId>
  19. <version>${ruoyi.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.ruoyi</groupId>
  23. <artifactId>ruoyi-system</artifactId>
  24. <version>${ruoyi.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.wechatpay-apiv3</groupId>
  28. <artifactId>wechatpay-java</artifactId>
  29. <version>0.2.9</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. <version>${mybatis.plus.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mapstruct</groupId>
  38. <artifactId>mapstruct</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.h2database</groupId>
  52. <artifactId>h2</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15to18 -->
  66. <dependency>
  67. <groupId>org.bouncycastle</groupId>
  68. <artifactId>bcprov-jdk15to18</artifactId>
  69. <version>1.79</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-boot-starter</artifactId>
  79. <version>${swagger.version}</version>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>io.swagger</groupId>
  83. <artifactId>swagger-models</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>org.mapstruct</groupId>
  87. <artifactId>mapstruct</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.ruoyi</groupId>
  93. <artifactId>ruoyi-framework</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>cn.felord</groupId>
  97. <artifactId>payment-spring-boot-starter</artifactId>
  98. <version>1.0.19.RELEASE</version>
  99. </dependency>
  100. <!-- 重试组件 -->
  101. <dependency>
  102. <groupId>org.springframework.retry</groupId>
  103. <artifactId>spring-retry</artifactId>
  104. </dependency>
  105. </dependencies>
  106. </project>