GH-3 - Add dedicated starter for JDBC-based event publication registry.

This commit is contained in:
Oliver Drotbohm
2022-07-23 21:53:19 +02:00
parent 3899d9d59c
commit 1e295039c4
2 changed files with 54 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
<module>spring-modulith-docs</module>
<module>spring-modulith-observability</module>
<module>spring-modulith-moments</module>
<module>spring-modulith-starter-jdbc</module>
<module>spring-modulith-starter-jpa</module>
<module>spring-modulith-starter-test</module>
</modules>

View File

@@ -0,0 +1,53 @@
<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.experimental</groupId>
<artifactId>spring-modulith</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>spring-modulith-starter-jdbc</artifactId>
<name>Spring Modulith - Starter JDBC</name>
<properties>
<module.name>org.springframework.modulith.starter.jdbc</module.name>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-modulith-api</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-modulith-moments</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
<!-- Events -->
<dependency>
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-modulith-events-core</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-modulith-events-jackson</artifactId>
<version>0.1.0-SNAPSHOT</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.experimental</groupId>
<artifactId>spring-modulith-events-jdbc</artifactId>
<version>0.1.0-SNAPSHOT</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>