pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>io.awspring.cloud</groupId>
  8. <artifactId>spring-cloud-aws-s3-parent</artifactId>
  9. <version>3.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>spring-cloud-aws-s3</artifactId>
  12. <name>Spring Cloud AWS S3 Integration</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-core</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-context</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>software.amazon.awssdk</groupId>
  24. <artifactId>s3</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.testcontainers</groupId>
  28. <artifactId>localstack</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.testcontainers</groupId>
  33. <artifactId>junit-jupiter</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <!-- AWS SDK v1 is required by testcontainers-localstack -->
  37. <dependency>
  38. <groupId>com.amazonaws</groupId>
  39. <artifactId>aws-java-sdk-core</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>