|
@@ -1,6 +1,6 @@
|
1
|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
3
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4
|
4
|
<modelVersion>4.0.0</modelVersion>
|
5
|
5
|
|
6
|
6
|
<groupId>org.springframework</groupId>
|
|
@@ -16,8 +16,39 @@
|
16
|
16
|
<dependencies>
|
17
|
17
|
<dependency>
|
18
|
18
|
<groupId>org.springframework.boot</groupId>
|
|
19
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
20
|
+ </dependency>
|
|
21
|
+ <dependency>
|
|
22
|
+ <groupId>org.springframework.boot</groupId>
|
|
23
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
24
|
+ <scope>test</scope>
|
|
25
|
+ </dependency>
|
|
26
|
+ <dependency>
|
|
27
|
+ <groupId>org.springframework.boot</groupId>
|
19
|
28
|
<artifactId>spring-boot-starter-web</artifactId>
|
20
|
29
|
</dependency>
|
|
30
|
+ <dependency>
|
|
31
|
+ <groupId>org.hamcrest</groupId>
|
|
32
|
+ <artifactId>hamcrest-library</artifactId>
|
|
33
|
+ </dependency>
|
|
34
|
+ <dependency>
|
|
35
|
+ <groupId>org.springframework</groupId>
|
|
36
|
+ <artifactId>spring-test</artifactId>
|
|
37
|
+ <version>RELEASE</version>
|
|
38
|
+ <scope>compile</scope>
|
|
39
|
+ </dependency>
|
|
40
|
+ <dependency>
|
|
41
|
+ <groupId>org.springframework.boot</groupId>
|
|
42
|
+ <artifactId>spring-boot-test</artifactId>
|
|
43
|
+ </dependency>
|
|
44
|
+ <dependency>
|
|
45
|
+ <groupId>junit</groupId>
|
|
46
|
+ <artifactId>junit</artifactId>
|
|
47
|
+ </dependency>
|
|
48
|
+ <dependency>
|
|
49
|
+ <groupId>org.springframework.boot</groupId>
|
|
50
|
+ <artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
51
|
+ </dependency>
|
21
|
52
|
</dependencies>
|
22
|
53
|
|
23
|
54
|
<properties>
|
|
@@ -34,4 +65,4 @@
|
34
|
65
|
</plugins>
|
35
|
66
|
</build>
|
36
|
67
|
|
37
|
|
-</project>
|
|
68
|
+</project>
|