Skip to content

Commit 3d18606

Browse files
committed
GH-200 - Group starters under single build module.
1 parent f0fb242 commit 3d18606

File tree

8 files changed

+44
-18
lines changed

8 files changed

+44
-18
lines changed

pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@
2727
<module>spring-modulith-moments</module>
2828
<module>spring-modulith-observability</module>
2929
<module>spring-modulith-runtime</module>
30-
<module>spring-modulith-starter-core</module>
31-
<module>spring-modulith-starter-insight</module>
32-
<module>spring-modulith-starter-jdbc</module>
33-
<module>spring-modulith-starter-jpa</module>
34-
<module>spring-modulith-starter-mongodb</module>
35-
<module>spring-modulith-starter-test</module>
30+
<module>spring-modulith-starters</module>
3631
<module>spring-modulith-test</module>
3732
</modules>
3833

spring-modulith-starters/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<parent>
5+
<groupId>org.springframework.modulith</groupId>
6+
<artifactId>spring-modulith</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<relativePath>../pom.xml</relativePath>
9+
</parent>
10+
11+
<artifactId>spring-modulith-starters</artifactId>
12+
<packaging>pom</packaging>
13+
14+
<name>Spring Modulith - Starters</name>
15+
16+
<modules>
17+
<module>spring-modulith-starter-core</module>
18+
<module>spring-modulith-starter-insight</module>
19+
<module>spring-modulith-starter-jdbc</module>
20+
<module>spring-modulith-starter-jpa</module>
21+
<module>spring-modulith-starter-mongodb</module>
22+
<module>spring-modulith-starter-test</module>
23+
</modules>
24+
25+
</project>

spring-modulith-starter-core/pom.xml renamed to spring-modulith-starters/spring-modulith-starter-core/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
<parent>
66
<groupId>org.springframework.modulith</groupId>
7-
<artifactId>spring-modulith</artifactId>
7+
<artifactId>spring-modulith-starters</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
9+
<relativePath>../pom.xml</relativePath>
910
</parent>
1011

1112
<artifactId>spring-modulith-starter-core</artifactId>
12-
<name>Spring Modulith - Starter Core</name>
13+
<name>Spring Modulith - Starters - Starter Core</name>
1314

1415
<properties>
1516
<module.name>org.springframework.modulith.starter.core</module.name>

spring-modulith-starter-insight/pom.xml renamed to spring-modulith-starters/spring-modulith-starter-insight/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
<parent>
66
<groupId>org.springframework.modulith</groupId>
7-
<artifactId>spring-modulith</artifactId>
7+
<artifactId>spring-modulith-starters</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
9+
<relativePath>../pom.xml</relativePath>
910
</parent>
1011

1112
<artifactId>spring-modulith-starter-insight</artifactId>
12-
<name>Spring Modulith - Starter Insight</name>
13+
<name>Spring Modulith - Starters - Starter Insight</name>
1314

1415
<properties>
1516
<module.name>org.springframework.modulith.starter.insight</module.name>

spring-modulith-starter-jdbc/pom.xml renamed to spring-modulith-starters/spring-modulith-starter-jdbc/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
<parent>
66
<groupId>org.springframework.modulith</groupId>
7-
<artifactId>spring-modulith</artifactId>
7+
<artifactId>spring-modulith-starters</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
9+
<relativePath>../pom.xml</relativePath>
910
</parent>
1011

1112
<artifactId>spring-modulith-starter-jdbc</artifactId>
12-
<name>Spring Modulith - Starter JDBC</name>
13+
<name>Spring Modulith - Starters - Starter JDBC</name>
1314

1415
<properties>
1516
<module.name>org.springframework.modulith.starter.jdbc</module.name>

spring-modulith-starter-jpa/pom.xml renamed to spring-modulith-starters/spring-modulith-starter-jpa/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
<parent>
66
<groupId>org.springframework.modulith</groupId>
7-
<artifactId>spring-modulith</artifactId>
7+
<artifactId>spring-modulith-starters</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
9+
<relativePath>../pom.xml</relativePath>
910
</parent>
1011

1112
<artifactId>spring-modulith-starter-jpa</artifactId>
12-
<name>Spring Modulith - Starter JPA</name>
13+
<name>Spring Modulith - Starters - Starter JPA</name>
1314

1415
<properties>
1516
<module.name>org.springframework.modulith.starter.jpa</module.name>

spring-modulith-starter-mongodb/pom.xml renamed to spring-modulith-starters/spring-modulith-starter-mongodb/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
<parent>
66
<groupId>org.springframework.modulith</groupId>
7-
<artifactId>spring-modulith</artifactId>
7+
<artifactId>spring-modulith-starters</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
9+
<relativePath>../pom.xml</relativePath>
910
</parent>
1011

1112
<artifactId>spring-modulith-starter-mongodb</artifactId>
12-
<name>Spring Modulith - Starter MongoDB</name>
13+
<name>Spring Modulith - Starters - Starter MongoDB</name>
1314

1415
<properties>
1516
<module.name>org.springframework.modulith.starter.mongodb</module.name>

spring-modulith-starter-test/pom.xml renamed to spring-modulith-starters/spring-modulith-starter-test/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33

44
<parent>
55
<groupId>org.springframework.modulith</groupId>
6-
<artifactId>spring-modulith</artifactId>
6+
<artifactId>spring-modulith-starters</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
8+
<relativePath>../pom.xml</relativePath>
89
</parent>
910

1011
<artifactId>spring-modulith-starter-test</artifactId>
11-
<name>Spring Modulith - Starter Test</name>
12+
<name>Spring Modulith - Starters - Starter Test</name>
1213

1314
<properties>
1415
<module.name>org.springframework.modulith.starter.test</module.name>

0 commit comments

Comments
 (0)