猫妈狗爸伴宠师小程序后端代码
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.

116 lines
4.0 KiB

6 months ago
5 months ago
6 months ago
6 months ago
6 months ago
5 months ago
5 months ago
6 months ago
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.ruoyi</groupId>
  8. <artifactId>ruoyi</artifactId>
  9. <version>3.7.0</version>
  10. </parent>
  11. <artifactId>ruoyi-catdog</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.tencentcloudapi</groupId>
  15. <artifactId>tencentcloud-sdk-java-common</artifactId>
  16. <version>LATEST</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.tencentcloudapi</groupId>
  20. <artifactId>tencentcloud-sdk-java-faceid</artifactId>
  21. <version>LATEST</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.ruoyi</groupId>
  25. <artifactId>ruoyi-common</artifactId>
  26. <version>${ruoyi.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ruoyi</groupId>
  30. <artifactId>ruoyi-system</artifactId>
  31. <version>${ruoyi.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.wechatpay-apiv3</groupId>
  35. <artifactId>wechatpay-java</artifactId>
  36. <version>0.2.9</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>${mybatis.plus.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.h2database</groupId>
  45. <artifactId>h2</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.squareup.okhttp3</groupId>
  50. <artifactId>okhttp</artifactId>
  51. <version>3.14.9</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.felord</groupId>
  55. <artifactId>payment-spring-boot-starter</artifactId>
  56. <version>1.0.19.RELEASE</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.bouncycastle</groupId>
  60. <artifactId>bcprov-jdk15to18</artifactId>
  61. <version>1.79</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mapstruct</groupId>
  65. <artifactId>mapstruct</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.springfox</groupId>
  69. <artifactId>springfox-boot-starter</artifactId>
  70. <version>${swagger.version}</version>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>io.swagger</groupId>
  74. <artifactId>swagger-models</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>org.mapstruct</groupId>
  78. <artifactId>mapstruct</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.ruoyi</groupId>
  84. <artifactId>ruoyi-common</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.ruoyi</groupId>
  88. <artifactId>ruoyi-framework</artifactId>
  89. <version>${ruoyi.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.vaadin.external.google</groupId>
  93. <artifactId>android-json</artifactId>
  94. <version>0.0.20131108.vaadin1</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.ruoyi</groupId>
  99. <artifactId>ruoyi-mall</artifactId>
  100. <version>3.7.0</version>
  101. <scope>compile</scope>
  102. </dependency>
  103. </dependencies>
  104. <properties>
  105. <maven.compiler.source>17</maven.compiler.source>
  106. <maven.compiler.target>17</maven.compiler.target>
  107. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  108. </properties>
  109. </project>