pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.0.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. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>software.amazon.awssdk</groupId>
  21. <artifactId>sqs</artifactId>
  22. </dependency>
  23. <dependency>
  24. <artifactId>spring-cloud-aws-messaging-support</artifactId>
  25. <groupId>io.awspring.cloud</groupId>
  26. <version>3.0.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.testcontainers</groupId>
  30. <artifactId>localstack</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.testcontainers</groupId>
  35. <artifactId>junit-jupiter</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <!-- AWS SDK v1 is required by testcontainers-localstack -->
  39. <dependency>
  40. <groupId>com.amazonaws</groupId>
  41. <artifactId>aws-java-sdk-core</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. </project>