pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <groupId>org.jeeplus</groupId>
  7. <artifactId>jeeplus-plugins</artifactId>
  8. <version>9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeeplus-oss</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeeplus</groupId>
  15. <artifactId>jeeplus-common</artifactId>
  16. <version>${project.parent.version}</version>
  17. </dependency>
  18. <!--minio-->
  19. <dependency>
  20. <groupId>io.minio</groupId>
  21. <artifactId>minio</artifactId>
  22. <version>8.0.3</version>
  23. </dependency>
  24. <!--aliyunOSS-->
  25. <dependency>
  26. <groupId>com.aliyun.oss</groupId>
  27. <artifactId>aliyun-sdk-oss</artifactId>
  28. <version>3.6.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-fileupload</groupId>
  32. <artifactId>commons-fileupload</artifactId>
  33. <version>1.3.1</version>
  34. </dependency>
  35. </dependencies>
  36. </project>