pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-sqs</artifactId>
  12. <name>Spring Cloud AWS SQS</name>
  13. <description>Spring Cloud AWS Simple Queue Service</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>software.amazon.awssdk</groupId>
  17. <artifactId>sqs</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>software.amazon.awssdk</groupId>
  21. <artifactId>arns</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-messaging</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-context</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.retry</groupId>
  33. <artifactId>spring-retry</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-databind</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.awspring.cloud</groupId>
  41. <artifactId>spring-cloud-aws-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.testcontainers</groupId>
  50. <artifactId>localstack</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.testcontainers</groupId>
  55. <artifactId>junit-jupiter</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. </dependencies>
  59. </project>