pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <artifactId>jeeplus-file</artifactId>
  11. <packaging>jar</packaging>
  12. <modelVersion>4.0.0</modelVersion>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.jeeplus</groupId>
  16. <artifactId>jeeplus-admin</artifactId>
  17. <version>${project.parent.version}</version>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>com.squareup.okhttp3</groupId>
  21. <artifactId>okhttp</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <!--minio-->
  26. <dependency>
  27. <groupId>io.minio</groupId>
  28. <artifactId>minio</artifactId>
  29. <version>8.2.2</version>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>com.squareup.okhttp3</groupId>
  33. <artifactId>okhttp</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.squareup.okhttp3</groupId>
  39. <artifactId>okhttp</artifactId>
  40. <version>3.8.1</version>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>com.squareup.okhttp3</groupId>
  44. <artifactId>okhttp</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <!--aliyunOSS-->
  49. <dependency>
  50. <groupId>com.aliyun.oss</groupId>
  51. <artifactId>aliyun-sdk-oss</artifactId>
  52. <version>3.13.1</version>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>com.squareup.okhttp3</groupId>
  56. <artifactId>okhttp</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-fileupload</groupId>
  62. <artifactId>commons-fileupload</artifactId>
  63. <version>1.3.3</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>com.squareup.okhttp3</groupId>
  67. <artifactId>okhttp</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. </dependencies>
  72. </project>