pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>tr-plugins</artifactId>
  7. <groupId>cn.tr</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tr-spring-boot-starter-plugin-file</artifactId>
  12. <version>${revision}</version>
  13. <packaging>jar</packaging>
  14. <description>文件OSS插件</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cn.tr</groupId>
  18. <artifactId>tr-framework</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.tr</groupId>
  27. <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <!--ali OSS存储-->
  31. <dependency>
  32. <groupId>com.aliyun.oss</groupId>
  33. <artifactId>aliyun-sdk-oss</artifactId>
  34. </dependency>
  35. <!-- minio -->
  36. <dependency>
  37. <groupId>io.minio</groupId>
  38. <artifactId>minio</artifactId>
  39. </dependency>
  40. <!--七牛云-->
  41. <dependency>
  42. <groupId>com.qiniu</groupId>
  43. <artifactId>qiniu-java-sdk</artifactId>
  44. </dependency>
  45. </dependencies>
  46. </project>