pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>1.3.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-filesystem</artifactId>
  10. <description>文件系统客户端,支持七牛、fastdfs,阿里云oss</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.google.code.gson</groupId>
  14. <artifactId>gson</artifactId>
  15. <version>2.8.5</version><!--2.4-->
  16. <optional>true</optional>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.qiniu</groupId>
  20. <artifactId>qiniu-java-sdk</artifactId>
  21. <version>[7.0.0, 7.2.99]</version>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.squareup.okhttp3</groupId>
  26. <artifactId>okhttp</artifactId>
  27. <version>3.14.4</version>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aliyun.oss</groupId>
  32. <artifactId>aliyun-sdk-oss</artifactId>
  33. <version>2.8.3</version>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.superdesk.libs</groupId>
  38. <artifactId>superdesk-libs-common</artifactId>
  39. <version>${project.parent.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.superdesk.libs</groupId>
  43. <artifactId>superdesk-libs-spring</artifactId>
  44. <version>${project.parent.version}</version>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-io</groupId>
  49. <artifactId>commons-io</artifactId>
  50. <version>2.5</version>
  51. </dependency>
  52. <!-- <dependency>
  53. <groupId>org.csource</groupId>
  54. <artifactId>fastdfs-client-java</artifactId>
  55. <version>1.27-SNAPSHOT</version>
  56. <optional>true</optional>
  57. </dependency> -->
  58. <dependency>
  59. <groupId>net.sf.jmimemagic</groupId>
  60. <artifactId>jmimemagic</artifactId>
  61. <version>0.1.5</version>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>log4j</groupId>
  65. <artifactId>log4j</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-deploy-plugin</artifactId>
  75. <configuration>
  76. <skip>false</skip>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>