Skip to content

Commit fb8f12f

Browse files
committed
GH-209 - Polishing.
A few more comments. Test dependency instead of the core one to include the subsequently shown API.
1 parent 85655c2 commit fb8f12f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

readme.adoc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ It supports the link:{docs}#verification[verification] of such modular arrangeme
1111
+
1212
[source, xml]
1313
----
14+
<!-- The Maven repository to pull the dependencies from -->
1415
<repositories>
1516
<repository>
1617
<id>spring-snapshots</id>
1718
<url>https://repo.spring.io/snapshot</url>
1819
</repository>
1920
</repositories>
21+
22+
<!-- Include the BOM for simplified version management -->
2023
<dependencyManagement>
2124
<dependencies>
2225
<dependency>
@@ -28,11 +31,17 @@ It supports the link:{docs}#verification[verification] of such modular arrangeme
2831
</dependency>
2932
</dependencies>
3033
</dependencyManagement>
34+
3135
<dependencies>
36+
37+
<!-- The test dependency to pull in verification APIs -->
38+
3239
<dependency>
3340
<groupId>org.springframework.modulith</groupId>
34-
<artifactId>spring-modulith-starter-core</artifactId>
41+
<artifactId>spring-modulith-starter-test</artifactId>
42+
<scope>test</scope>
3543
</dependency>
44+
3645
</dependencies>
3746
----
3847
. Create a Java package arrangement that puts business modules as link:{docs}#fundamentals[direct sub-packages of the application's main package].

0 commit comments

Comments
 (0)