pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>io.awspring.cloud</groupId>
  5. <artifactId>spring-cloud-aws-modulith</artifactId>
  6. <version>3.2.0-SNAPSHOT</version>
  7. </parent>
  8. <name>Spring Cloud AWS Modulith - Events - SNS support</name>
  9. <artifactId>spring-cloud-aws-modulith-events-sns</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.springframework.modulith</groupId>
  13. <artifactId>spring-modulith-api</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.springframework.modulith</groupId>
  17. <artifactId>spring-modulith-events-core</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.awspring.cloud</groupId>
  21. <artifactId>spring-cloud-aws-sns</artifactId>
  22. </dependency>
  23. <!-- Test dependencies -->
  24. <dependency>
  25. <groupId>org.springframework.modulith</groupId>
  26. <artifactId>spring-modulith-starter-jdbc</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.h2database</groupId>
  31. <artifactId>h2</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-json</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-testcontainers</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.awspring.cloud</groupId>
  51. <artifactId>spring-cloud-aws-starter-sns</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.awspring.cloud</groupId>
  56. <artifactId>spring-cloud-aws-starter-sqs</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.testcontainers</groupId>
  61. <artifactId>localstack</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. </dependencies>
  65. </project>