基于速卖通SDK实现的对接速卖通的Web接口服务
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.

7 months ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Web容器 -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <!-- SpringBoot 拦截器 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-aop</artifactId>
  25. </dependency>
  26. <!-- 阿里数据库连接池 -->
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid-spring-boot-starter</artifactId>
  30. </dependency>
  31. <!-- 获取系统信息 -->
  32. <dependency>
  33. <groupId>com.github.oshi</groupId>
  34. <artifactId>oshi-core</artifactId>
  35. </dependency>
  36. <!-- 系统模块-->
  37. <dependency>
  38. <groupId>com.ruoyi</groupId>
  39. <artifactId>ruoyi-system</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>