pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>com.taais</groupId>
  7. <artifactId>taais-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>taais-common-oss</artifactId>
  12. <description>
  13. taais-common-oss oss对象存储服务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.taais</groupId>
  18. <artifactId>taais-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.taais</groupId>
  22. <artifactId>taais-common-json</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.taais</groupId>
  26. <artifactId>taais-common-redis</artifactId>
  27. </dependency>
  28. <!-- <dependency>-->
  29. <!-- <groupId>com.amazonaws</groupId>-->
  30. <!-- <artifactId>aws-java-sdk-s3</artifactId>-->
  31. <!-- </dependency>-->
  32. <!-- AWS SDK for Java 2.x -->
  33. <dependency>
  34. <groupId>software.amazon.awssdk</groupId>
  35. <artifactId>s3</artifactId>
  36. <exclusions>
  37. <!-- 将基于 Netty 的 HTTP 客户端从类路径中移除 -->
  38. <exclusion>
  39. <groupId>software.amazon.awssdk</groupId>
  40. <artifactId>netty-nio-client</artifactId>
  41. </exclusion>
  42. <!-- 将基于 CRT 的 HTTP 客户端从类路径中移除 -->
  43. <exclusion>
  44. <groupId>software.amazon.awssdk</groupId>
  45. <artifactId>aws-crt-client</artifactId>
  46. </exclusion>
  47. <!-- 将基于 Apache 的 HTTP 客户端从类路径中移除 -->
  48. <exclusion>
  49. <groupId>software.amazon.awssdk</groupId>
  50. <artifactId>apache-client</artifactId>
  51. </exclusion>
  52. <!-- 将配置基于 URL 连接的 HTTP 客户端从类路径中移除 -->
  53. <exclusion>
  54. <groupId>software.amazon.awssdk</groupId>
  55. <artifactId>url-connection-client</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!-- 使用AWS基于 CRT 的 S3 客户端 -->
  60. <dependency>
  61. <groupId>software.amazon.awssdk.crt</groupId>
  62. <artifactId>aws-crt</artifactId>
  63. </dependency>
  64. <!-- 基于 AWS CRT 的 S3 客户端的性能增强的 S3 传输管理器 -->
  65. <dependency>
  66. <groupId>software.amazon.awssdk</groupId>
  67. <artifactId>s3-transfer-manager</artifactId>
  68. </dependency>
  69. </dependencies>
  70. </project>