pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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-sns</artifactId>
  12. <name>Spring Cloud AWS SNS</name>
  13. <description>Spring Cloud AWS Simple Notification Service</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>software.amazon.awssdk</groupId>
  17. <artifactId>sns</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>com.fasterxml.jackson.core</groupId>
  29. <artifactId>jackson-databind</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-web</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-webmvc</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>jakarta.servlet</groupId>
  43. <artifactId>jakarta.servlet-api</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.awspring.cloud</groupId>
  48. <artifactId>spring-cloud-aws-core</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.testcontainers</groupId>
  57. <artifactId>localstack</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.testcontainers</groupId>
  62. <artifactId>junit-jupiter</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.awaitility</groupId>
  67. <artifactId>awaitility</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>software.amazon.awssdk</groupId>
  72. <artifactId>sqs</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>