基于速卖通SDK实现的对接速卖通的Web接口服务
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 7 měsíci
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. <groupId>com.ruoyi</groupId>
  7. <artifactId>ruoyi</artifactId>
  8. <version>3.8.7</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.8.7</ruoyi.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.20</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  23. <fastjson.version>2.0.43</fastjson.version>
  24. <oshi.version>6.4.11</oshi.version>
  25. <commons.io.version>2.13.0</commons.io.version>
  26. <commons.collections.version>3.2.2</commons.collections.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <hutool.version>5.8.20</hutool.version>
  31. <lombok.version>1.18.28</lombok.version>
  32. </properties>
  33. <!-- 依赖声明 -->
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- SpringBoot的依赖配置-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-dependencies</artifactId>
  40. <version>2.5.15</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <!-- 阿里数据库连接池 -->
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>druid-spring-boot-starter</artifactId>
  48. <version>${druid.version}</version>
  49. </dependency>
  50. <!-- 解析客户端操作系统、浏览器等 -->
  51. <dependency>
  52. <groupId>eu.bitwalker</groupId>
  53. <artifactId>UserAgentUtils</artifactId>
  54. <version>${bitwalker.version}</version>
  55. </dependency>
  56. <!-- pagehelper 分页插件 -->
  57. <dependency>
  58. <groupId>com.github.pagehelper</groupId>
  59. <artifactId>pagehelper-spring-boot-starter</artifactId>
  60. <version>${pagehelper.boot.version}</version>
  61. </dependency>
  62. <!-- 获取系统信息 -->
  63. <dependency>
  64. <groupId>com.github.oshi</groupId>
  65. <artifactId>oshi-core</artifactId>
  66. <version>${oshi.version}</version>
  67. </dependency>
  68. <!-- Swagger3依赖 -->
  69. <dependency>
  70. <groupId>io.springfox</groupId>
  71. <artifactId>springfox-boot-starter</artifactId>
  72. <version>${swagger.version}</version>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>io.swagger</groupId>
  76. <artifactId>swagger-models</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <!-- io常用工具类 -->
  81. <dependency>
  82. <groupId>commons-io</groupId>
  83. <artifactId>commons-io</artifactId>
  84. <version>${commons.io.version}</version>
  85. </dependency>
  86. <!-- collections工具类 -->
  87. <dependency>
  88. <groupId>commons-collections</groupId>
  89. <artifactId>commons-collections</artifactId>
  90. <version>${commons.collections.version}</version>
  91. </dependency>
  92. <!-- 阿里JSON解析器 -->
  93. <dependency>
  94. <groupId>com.alibaba.fastjson2</groupId>
  95. <artifactId>fastjson2</artifactId>
  96. <version>${fastjson.version}</version>
  97. </dependency>
  98. <!-- 核心模块-->
  99. <dependency>
  100. <groupId>com.ruoyi</groupId>
  101. <artifactId>ruoyi-framework</artifactId>
  102. <version>${ruoyi.version}</version>
  103. </dependency>
  104. <!-- 系统模块-->
  105. <dependency>
  106. <groupId>com.ruoyi</groupId>
  107. <artifactId>ruoyi-system</artifactId>
  108. <version>${ruoyi.version}</version>
  109. </dependency>
  110. <!-- 通用工具-->
  111. <dependency>
  112. <groupId>com.ruoyi</groupId>
  113. <artifactId>ruoyi-common</artifactId>
  114. <version>${ruoyi.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>cn.hutool</groupId>
  118. <artifactId>hutool-all</artifactId>
  119. <version>${hutool.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.projectlombok</groupId>
  123. <artifactId>lombok</artifactId>
  124. <version>${lombok.version}</version>
  125. </dependency>
  126. </dependencies>
  127. </dependencyManagement>
  128. <modules>
  129. <module>ruoyi-admin</module>
  130. <module>ruoyi-framework</module>
  131. <module>ruoyi-system</module>
  132. <module>ruoyi-common</module>
  133. </modules>
  134. <packaging>pom</packaging>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. <version>3.1</version>
  141. <configuration>
  142. <source>${java.version}</source>
  143. <target>${java.version}</target>
  144. <encoding>${project.build.sourceEncoding}</encoding>
  145. </configuration>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. <repositories>
  150. <repository>
  151. <id>public</id>
  152. <name>aliyun nexus</name>
  153. <url>https://maven.aliyun.com/repository/public</url>
  154. <releases>
  155. <enabled>true</enabled>
  156. </releases>
  157. </repository>
  158. </repositories>
  159. <pluginRepositories>
  160. <pluginRepository>
  161. <id>public</id>
  162. <name>aliyun nexus</name>
  163. <url>https://maven.aliyun.com/repository/public</url>
  164. <releases>
  165. <enabled>true</enabled>
  166. </releases>
  167. <snapshots>
  168. <enabled>false</enabled>
  169. </snapshots>
  170. </pluginRepository>
  171. </pluginRepositories>
  172. </project>