|
|
@@ -18,6 +18,60 @@
|
|
18
|
18
|
<groupId>org.springframework.boot</groupId>
|
|
19
|
19
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
20
|
20
|
</dependency>
|
|
|
21
|
+
|
|
|
22
|
+ <dependency>
|
|
|
23
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
24
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
25
|
+ </dependency>
|
|
|
26
|
+
|
|
|
27
|
+ <dependency>
|
|
|
28
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
29
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
30
|
+ <scope>test</scope>
|
|
|
31
|
+ </dependency>
|
|
|
32
|
+ <dependency>
|
|
|
33
|
+ <groupId>junit</groupId>
|
|
|
34
|
+ <artifactId>junit</artifactId>
|
|
|
35
|
+ </dependency>
|
|
|
36
|
+ <dependency>
|
|
|
37
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
38
|
+ <artifactId>spring-boot-test</artifactId>
|
|
|
39
|
+ </dependency>
|
|
|
40
|
+ <dependency>
|
|
|
41
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
42
|
+ <artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
|
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.hamcrest</groupId>
|
|
|
52
|
+ <artifactId>hamcrest-library</artifactId>
|
|
|
53
|
+ </dependency>
|
|
|
54
|
+
|
|
|
55
|
+
|
|
|
56
|
+
|
|
|
57
|
+ <dependency>
|
|
|
58
|
+ <groupId>org.hibernate</groupId>
|
|
|
59
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
60
|
+ <version>6.0.10.Final</version>
|
|
|
61
|
+ </dependency>
|
|
|
62
|
+
|
|
|
63
|
+ <dependency>
|
|
|
64
|
+ <groupId>org.glassfish</groupId>
|
|
|
65
|
+ <artifactId>javax.el</artifactId>
|
|
|
66
|
+ <version>3.0.1-b09</version>
|
|
|
67
|
+ </dependency>
|
|
|
68
|
+
|
|
|
69
|
+ <dependency>
|
|
|
70
|
+ <groupId>org.hibernate</groupId>
|
|
|
71
|
+ <artifactId>hibernate-validator-cdi</artifactId>
|
|
|
72
|
+ <version>6.0.10.Final</version>
|
|
|
73
|
+ </dependency>
|
|
|
74
|
+
|
|
21
|
75
|
</dependencies>
|
|
22
|
76
|
|
|
23
|
77
|
<properties>
|