File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff 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].
You can’t perform that action at this time.
0 commit comments