pom.xml 2.6 KB

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