1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.awspring.cloud</groupId>
- <artifactId>spring-cloud-aws-modulith</artifactId>
- <version>3.2.0-SNAPSHOT</version>
- </parent>
- <name>Spring Cloud AWS Modulith - Events - SNS support</name>
- <artifactId>spring-cloud-aws-modulith-events-sns</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.springframework.modulith</groupId>
- <artifactId>spring-modulith-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.modulith</groupId>
- <artifactId>spring-modulith-events-core</artifactId>
- </dependency>
- <dependency>
- <groupId>io.awspring.cloud</groupId>
- <artifactId>spring-cloud-aws-sns</artifactId>
- </dependency>
- <!-- Test dependencies -->
- <dependency>
- <groupId>org.springframework.modulith</groupId>
- <artifactId>spring-modulith-starter-jdbc</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-json</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-testcontainers</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>io.awspring.cloud</groupId>
- <artifactId>spring-cloud-aws-starter-sns</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>io.awspring.cloud</groupId>
- <artifactId>spring-cloud-aws-starter-sqs</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.testcontainers</groupId>
- <artifactId>localstack</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|