1010 <description >This is simple boot client application for Spring boot actuator test</description >
1111
1212 <parent >
13- <groupId >com.baeldung.spring-boot-modules</groupId >
14- <artifactId >spring-boot-modules</artifactId >
15- <version >1.0.0-SNAPSHOT</version >
13+ <groupId >com.baeldung</groupId >
14+ <artifactId >parent-boot-4</artifactId >
15+ <version >0.0.1-SNAPSHOT</version >
16+ <relativePath >../../parent-boot-4</relativePath >
1617 </parent >
1718
1819 <dependencies >
1920 <dependency >
2021 <groupId >org.springframework.boot</groupId >
2122 <artifactId >spring-boot-starter-web</artifactId >
2223 </dependency >
24+ <dependency >
25+ <groupId >org.springframework.boot</groupId >
26+ <artifactId >spring-boot-starter-restclient</artifactId >
27+ </dependency >
28+ <dependency >
29+ <groupId >org.springframework.boot</groupId >
30+ <artifactId >spring-boot-starter-webclient</artifactId >
31+ </dependency >
32+
33+ <dependency >
34+ <groupId >org.junit.vintage</groupId >
35+ <artifactId >junit-vintage-engine</artifactId >
36+ <scope >provided</scope >
37+ </dependency >
38+
2339 <dependency >
2440 <groupId >org.springframework.boot</groupId >
2541 <artifactId >spring-boot-starter-test</artifactId >
2642 <scope >test</scope >
43+ <exclusions >
44+ <exclusion >
45+ <groupId >org.junit.vintage</groupId >
46+ <artifactId >junit-vintage-engine</artifactId >
47+ </exclusion >
48+ </exclusions >
2749 </dependency >
2850 <dependency >
2951 <groupId >com.h2database</groupId >
3052 <artifactId >h2</artifactId >
3153 </dependency >
32- <dependency >
33- <groupId >org.springframework.boot</groupId >
34- <artifactId >spring-boot-starter</artifactId >
35- </dependency >
3654
3755 <dependency >
3856 <groupId >org.springframework</groupId >
4462 </dependency >
4563 </dependencies >
4664
47- <build >
48- <finalName >spring-boot-client</finalName >
49- <resources >
50- <resource >
51- <directory >src/main/resources</directory >
52- <filtering >true</filtering >
53- </resource >
54- </resources >
55- <plugins >
56- <plugin >
57- <groupId >org.apache.maven.plugins</groupId >
58- <artifactId >maven-war-plugin</artifactId >
59- </plugin >
60- <plugin >
61- <groupId >pl.project13.maven</groupId >
62- <artifactId >git-commit-id-plugin</artifactId >
63- <version >${git-commit-id-plugin.version} </version >
64- </plugin >
65- </plugins >
66- </build >
67-
68- <profiles >
69- <profile >
70- <id >autoconfiguration</id >
71- <build >
72- <plugins >
73- <plugin >
74- <groupId >org.apache.maven.plugins</groupId >
75- <artifactId >maven-surefire-plugin</artifactId >
76- <version >${maven-surefire-plugin.version} </version >
77- <executions >
78- <execution >
79- <phase >integration-test</phase >
80- <goals >
81- <goal >test</goal >
82- </goals >
83- <configuration >
84- <excludes >
85- <exclude >**/*LiveTest.java</exclude >
86- <exclude >**/*IntegrationTest.java</exclude >
87- <exclude >**/*IntTest.java</exclude >
88- </excludes >
89- <includes >
90- <include >**/AutoconfigurationTest.java</include >
91- </includes >
92- </configuration >
93- </execution >
94- </executions >
95- <configuration >
96- <systemPropertyVariables >
97- <test .mime>json</test .mime>
98- </systemPropertyVariables >
99- </configuration >
100- </plugin >
101- </plugins >
102- </build >
103- </profile >
104- </profiles >
105-
106- <properties >
107- <git-commit-id-plugin .version>2.2.4</git-commit-id-plugin .version>
108- </properties >
109-
11065</project >
0 commit comments