|
|
@@ -18,6 +18,51 @@
|
|
18
|
18
|
<groupId>org.springframework.boot</groupId>
|
|
19
|
19
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
20
|
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.hamcrest</groupId>
|
|
|
28
|
+ <artifactId>hamcrest-library</artifactId>
|
|
|
29
|
+ </dependency>
|
|
|
30
|
+ <dependency>
|
|
|
31
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
32
|
+ <artifactId>spring-boot-test</artifactId>
|
|
|
33
|
+ </dependency>
|
|
|
34
|
+ <dependency>
|
|
|
35
|
+ <groupId>junit</groupId>
|
|
|
36
|
+ <artifactId>junit</artifactId>
|
|
|
37
|
+ </dependency>
|
|
|
38
|
+ <dependency>
|
|
|
39
|
+ <groupId>org.springframework</groupId>
|
|
|
40
|
+ <artifactId>spring-test</artifactId>
|
|
|
41
|
+ <version>RELEASE</version>
|
|
|
42
|
+ <scope>compile</scope>
|
|
|
43
|
+ </dependency>
|
|
|
44
|
+ <dependency>
|
|
|
45
|
+ <groupId>org.springframework</groupId>
|
|
|
46
|
+ <artifactId>spring-test</artifactId>
|
|
|
47
|
+ <version>RELEASE</version>
|
|
|
48
|
+ <scope>compile</scope>
|
|
|
49
|
+ </dependency>
|
|
|
50
|
+ <dependency>
|
|
|
51
|
+ <groupId>org.mockito</groupId>
|
|
|
52
|
+ <artifactId>mockito-core</artifactId>
|
|
|
53
|
+ </dependency>
|
|
|
54
|
+ <dependency>
|
|
|
55
|
+ <groupId>org.assertj</groupId>
|
|
|
56
|
+ <artifactId>assertj-core</artifactId>
|
|
|
57
|
+ </dependency>
|
|
|
58
|
+ <dependency>
|
|
|
59
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
60
|
+ <artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
|
61
|
+ </dependency>
|
|
|
62
|
+ <dependency>
|
|
|
63
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
64
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
65
|
+ </dependency>
|
|
21
|
66
|
</dependencies>
|
|
22
|
67
|
|
|
23
|
68
|
<properties>
|