GH-200 - Group starters under single build module.
This commit is contained in:
7
pom.xml
7
pom.xml
@@ -27,12 +27,7 @@
|
||||
<module>spring-modulith-moments</module>
|
||||
<module>spring-modulith-observability</module>
|
||||
<module>spring-modulith-runtime</module>
|
||||
<module>spring-modulith-starter-core</module>
|
||||
<module>spring-modulith-starter-insight</module>
|
||||
<module>spring-modulith-starter-jdbc</module>
|
||||
<module>spring-modulith-starter-jpa</module>
|
||||
<module>spring-modulith-starter-mongodb</module>
|
||||
<module>spring-modulith-starter-test</module>
|
||||
<module>spring-modulith-starters</module>
|
||||
<module>spring-modulith-test</module>
|
||||
</modules>
|
||||
|
||||
|
||||
25
spring-modulith-starters/pom.xml
Normal file
25
spring-modulith-starters/pom.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Spring Modulith - Starters</name>
|
||||
|
||||
<modules>
|
||||
<module>spring-modulith-starter-core</module>
|
||||
<module>spring-modulith-starter-insight</module>
|
||||
<module>spring-modulith-starter-jdbc</module>
|
||||
<module>spring-modulith-starter-jpa</module>
|
||||
<module>spring-modulith-starter-mongodb</module>
|
||||
<module>spring-modulith-starter-test</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
@@ -4,12 +4,13 @@
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starter-core</artifactId>
|
||||
<name>Spring Modulith - Starter Core</name>
|
||||
<name>Spring Modulith - Starters - Starter Core</name>
|
||||
|
||||
<properties>
|
||||
<module.name>org.springframework.modulith.starter.core</module.name>
|
||||
@@ -4,12 +4,13 @@
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starter-insight</artifactId>
|
||||
<name>Spring Modulith - Starter Insight</name>
|
||||
<name>Spring Modulith - Starters - Starter Insight</name>
|
||||
|
||||
<properties>
|
||||
<module.name>org.springframework.modulith.starter.insight</module.name>
|
||||
@@ -4,12 +4,13 @@
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starter-jdbc</artifactId>
|
||||
<name>Spring Modulith - Starter JDBC</name>
|
||||
<name>Spring Modulith - Starters - Starter JDBC</name>
|
||||
|
||||
<properties>
|
||||
<module.name>org.springframework.modulith.starter.jdbc</module.name>
|
||||
@@ -4,12 +4,13 @@
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starter-jpa</artifactId>
|
||||
<name>Spring Modulith - Starter JPA</name>
|
||||
<name>Spring Modulith - Starters - Starter JPA</name>
|
||||
|
||||
<properties>
|
||||
<module.name>org.springframework.modulith.starter.jpa</module.name>
|
||||
@@ -4,12 +4,13 @@
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starter-mongodb</artifactId>
|
||||
<name>Spring Modulith - Starter MongoDB</name>
|
||||
<name>Spring Modulith - Starters - Starter MongoDB</name>
|
||||
|
||||
<properties>
|
||||
<module.name>org.springframework.modulith.starter.mongodb</module.name>
|
||||
@@ -3,12 +3,13 @@
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.modulith</groupId>
|
||||
<artifactId>spring-modulith</artifactId>
|
||||
<artifactId>spring-modulith-starters</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>spring-modulith-starter-test</artifactId>
|
||||
<name>Spring Modulith - Starter Test</name>
|
||||
<name>Spring Modulith - Starters - Starter Test</name>
|
||||
|
||||
<properties>
|
||||
<module.name>org.springframework.modulith.starter.test</module.name>
|
||||
Reference in New Issue
Block a user