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
11
11
+
12
12
[source, xml]
13
13
----
14
+ <!-- The Maven repository to pull the dependencies from -->
14
15
<repositories>
15
16
<repository>
16
17
<id>spring-snapshots</id>
17
18
<url>https://repo.spring.io/snapshot</url>
18
19
</repository>
19
20
</repositories>
21
+
22
+ <!-- Include the BOM for simplified version management -->
20
23
<dependencyManagement>
21
24
<dependencies>
22
25
<dependency>
@@ -28,11 +31,17 @@ It supports the link:{docs}#verification[verification] of such modular arrangeme
28
31
</dependency>
29
32
</dependencies>
30
33
</dependencyManagement>
34
+
31
35
<dependencies>
36
+
37
+ <!-- The test dependency to pull in verification APIs -->
38
+
32
39
<dependency>
33
40
<groupId>org.springframework.modulith</groupId>
34
- <artifactId>spring-modulith-starter-core</artifactId>
41
+ <artifactId>spring-modulith-starter-test</artifactId>
42
+ <scope>test</scope>
35
43
</dependency>
44
+
36
45
</dependencies>
37
46
----
38
47
. 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