File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,34 @@ It supports the link:{docs}#verification[verification] of such modular arrangeme
7
7
== Quickstart
8
8
9
9
. Create a Spring Boot application on https://start.spring.io
10
+ . Add Spring Modulith to your application by adding this to your `pom.xml`:
11
+ +
12
+ [source, xml]
13
+ ----
14
+ <repositories>
15
+ <repository>
16
+ <id>spring-snapshots</id>
17
+ <url>https://repo.spring.io/snapshot</url>
18
+ </repository>
19
+ </repositories>
20
+ <dependencyManagement>
21
+ <dependencies>
22
+ <dependency>
23
+ <groupId>org.springframework.modulith</groupId>
24
+ <artifactId>spring-modulith-bom</artifactId>
25
+ <version>1.0.0-SNAPSHOT</version>
26
+ <scope>import</scope>
27
+ <type>pom</type>
28
+ </dependency>
29
+ </dependencies>
30
+ </dependencyManagement>
31
+ <dependencies>
32
+ <dependency>
33
+ <groupId>org.springframework.modulith</groupId>
34
+ <artifactId>spring-modulith-starter-core</artifactId>
35
+ </dependency>
36
+ </dependencies>
37
+ ----
10
38
. Create a Java package arrangement that puts business modules as link:{docs}#fundamentals[direct sub-packages of the application's main package].
11
39
+
12
40
[source, text, subs="macros"]
You can’t perform that action at this time.
0 commit comments