50 lines
1.5 KiB
XML
50 lines
1.5 KiB
XML
<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>org.springframework.modulith</groupId>
|
|
<artifactId>spring-modulith-starters</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>spring-modulith-starter-mongodb</artifactId>
|
|
<name>Spring Modulith - Starters - Starter MongoDB</name>
|
|
|
|
<properties>
|
|
<module.name>org.springframework.modulith.starter.mongodb</module.name>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<artifactId>spring-modulith-starter-core</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- Events -->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<artifactId>spring-modulith-events-core</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<artifactId>spring-modulith-events-jackson</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.modulith</groupId>
|
|
<artifactId>spring-modulith-events-mongodb</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|