pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>com.ruoyi</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>0.10.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-common-oss</artifactId>
  12. <description>
  13. ruoyi-common-oss oss服务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-common-redis</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.qiniu</groupId>
  22. <artifactId>qiniu-java-sdk</artifactId>
  23. <version>${qiniu.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.aliyun.oss</groupId>
  27. <artifactId>aliyun-sdk-oss</artifactId>
  28. <version>${aliyun.oss.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.qcloud</groupId>
  32. <artifactId>cos_api</artifactId>
  33. <version>${qcloud.cos.version}</version>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-log4j12</artifactId>
  38. </exclusion>
  39. <exclusion>
  40. <groupId>org.bouncycastle</groupId>
  41. <artifactId>bcprov-jdk15on</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.minio</groupId>
  47. <artifactId>minio</artifactId>
  48. <version>${minio.version}</version>
  49. </dependency>
  50. </dependencies>
  51. </project>