File tree 2 files changed +33
-2
lines changed
spring-boot-custom-starter
greeter-spring-boot-sample-app
2 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 7
7
<version >0.0.1-SNAPSHOT</version >
8
8
9
9
<parent >
10
- <artifactId >parent -boot-1 </artifactId >
10
+ <artifactId >spring -boot-custom-starter </artifactId >
11
11
<groupId >com.baeldung</groupId >
12
12
<version >0.0.1-SNAPSHOT</version >
13
- <relativePath >../../parent -boot-1 </relativePath >
13
+ <relativePath >../../spring -boot-custom-starter </relativePath >
14
14
</parent >
15
+
16
+ <dependencyManagement >
17
+ <dependencies >
18
+ <dependency >
19
+ <groupId >org.springframework.boot</groupId >
20
+ <artifactId >spring-boot-dependencies</artifactId >
21
+ <version >${spring-boot.version} </version >
22
+ <type >pom</type >
23
+ <scope >import</scope >
24
+ </dependency >
25
+ </dependencies >
26
+ </dependencyManagement >
15
27
16
28
<dependencies >
17
29
<dependency >
18
30
<groupId >com.baeldung</groupId >
19
31
<artifactId >greeter-spring-boot-starter</artifactId >
20
32
<version >${greeter-starter.version} </version >
21
33
</dependency >
34
+ <dependency >
35
+ <groupId >org.springframework.boot</groupId >
36
+ <artifactId >spring-boot-starter-test</artifactId >
37
+ <scope >test</scope >
38
+ </dependency >
22
39
</dependencies >
40
+
41
+ <build >
42
+ <pluginManagement >
43
+ <plugins >
44
+ <plugin >
45
+ <groupId >org.springframework.boot</groupId >
46
+ <artifactId >spring-boot-maven-plugin</artifactId >
47
+ <version >${spring-boot.version} </version >
48
+ </plugin >
49
+ </plugins >
50
+ </pluginManagement >
51
+ </build >
23
52
24
53
<properties >
54
+ <spring-boot .version>1.5.15.RELEASE</spring-boot .version>
25
55
<greeter-starter .version>0.0.1-SNAPSHOT</greeter-starter .version>
26
56
</properties >
27
57
Original file line number Diff line number Diff line change 18
18
<module >greeter-spring-boot-starter</module >
19
19
<module >greeter-spring-boot-sample-app</module >
20
20
</modules >
21
+
21
22
22
23
</project >
You can’t perform that action at this time.
0 commit comments