pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-messaging-support</artifactId>
  12. <name>Spring Cloud AWS Messaging Support</name>
  13. <description>Spring Cloud Support for AWS Messaging Services</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>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>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-databind</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.awspring.cloud</groupId>
  37. <artifactId>spring-cloud-aws-core</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.testcontainers</groupId>
  46. <artifactId>localstack</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.testcontainers</groupId>
  51. <artifactId>junit-jupiter</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <!-- AWS SDK v1 is required by testcontainers-localstack -->
  55. <dependency>
  56. <groupId>com.amazonaws</groupId>
  57. <artifactId>aws-java-sdk-core</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. </dependencies>
  61. </project>