pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <artifactId>spring-cloud-aws</artifactId>
  7. <groupId>io.awspring.cloud</groupId>
  8. <version>3.2.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>spring-cloud-aws-testcontainers</artifactId>
  12. <name>Spring Cloud AWS Testcontainers</name>
  13. <description>Spring Cloud AWS Testcontainers Integration</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>io.awspring.cloud</groupId>
  17. <artifactId>spring-cloud-aws-autoconfigure</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.awspring.cloud</groupId>
  21. <artifactId>spring-cloud-aws-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-testcontainers</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.testcontainers</groupId>
  29. <artifactId>localstack</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.testcontainers</groupId>
  38. <artifactId>junit-jupiter</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.awspring.cloud</groupId>
  43. <artifactId>spring-cloud-aws-starter-dynamodb</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.awspring.cloud</groupId>
  48. <artifactId>spring-cloud-aws-starter-sns</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.awspring.cloud</groupId>
  53. <artifactId>spring-cloud-aws-starter-sqs</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.awspring.cloud</groupId>
  58. <artifactId>spring-cloud-aws-starter-ses</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.awspring.cloud</groupId>
  63. <artifactId>spring-cloud-aws-starter-s3</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. </dependencies>
  67. </project>