1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2
+ 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" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+ <parent >
6
+ <groupId >org.springframework.boot</groupId >
7
+ <artifactId >spring-boot-starter-parent</artifactId >
8
+ <version >2.3.0.M2</version >
9
+ </parent >
10
+ <artifactId >department-service</artifactId >
11
+ <groupId >vmware.services</groupId >
12
+ <version >1.1</version >
13
+
14
+ <properties >
15
+ <java .version>1.8</java .version>
16
+ </properties >
17
+
18
+ <dependencyManagement >
19
+ <dependencies >
20
+ <dependency >
21
+ <groupId >org.springframework.cloud</groupId >
22
+ <artifactId >spring-cloud-dependencies</artifactId >
23
+ <version >Hoxton.SR2</version >
24
+ <type >pom</type >
25
+ <scope >import</scope >
26
+ </dependency >
27
+ </dependencies >
28
+ </dependencyManagement >
29
+
30
+ <dependencies >
31
+ <dependency >
32
+ <groupId >org.springframework.cloud</groupId >
33
+ <artifactId >spring-cloud-starter-kubernetes-all</artifactId >
34
+ </dependency >
35
+ <dependency >
36
+ <groupId >org.springframework.cloud</groupId >
37
+ <artifactId >spring-cloud-starter-netflix-ribbon</artifactId >
38
+ </dependency >
39
+ <dependency >
40
+ <groupId >org.springframework.cloud</groupId >
41
+ <artifactId >spring-cloud-starter-openfeign</artifactId >
42
+ </dependency >
43
+ <dependency >
44
+ <groupId >org.springframework.boot</groupId >
45
+ <artifactId >spring-boot-starter-web</artifactId >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >org.springframework.boot</groupId >
49
+ <artifactId >spring-boot-starter-actuator</artifactId >
50
+ </dependency >
51
+ <dependency >
52
+ <groupId >org.springframework.boot</groupId >
53
+ <artifactId >spring-boot-starter-data-mongodb</artifactId >
54
+ </dependency >
55
+ <dependency >
56
+ <groupId >io.springfox</groupId >
57
+ <artifactId >springfox-swagger2</artifactId >
58
+ <version >2.9.2</version >
59
+ </dependency >
60
+ <dependency >
61
+ <groupId >org.springframework.cloud</groupId >
62
+ <artifactId >spring-cloud-starter-sleuth</artifactId >
63
+ </dependency >
64
+ </dependencies >
65
+
66
+ <repositories >
67
+ <repository >
68
+ <id >spring-milestones</id >
69
+ <name >Spring Milestones</name >
70
+ <url >https://repo.spring.io/milestone</url >
71
+ </repository >
72
+ </repositories >
73
+ <pluginRepositories >
74
+ <pluginRepository >
75
+ <id >spring-milestones</id >
76
+ <name >Spring Milestones</name >
77
+ <url >https://repo.spring.io/milestone</url >
78
+ </pluginRepository >
79
+ </pluginRepositories >
80
+
81
+
82
+ <build >
83
+ <plugins >
84
+ <plugin >
85
+ <groupId >org.springframework.boot</groupId >
86
+ <artifactId >spring-boot-maven-plugin</artifactId >
87
+ <configuration >
88
+ <layout >LAYERED_JAR</layout >
89
+ </configuration >
90
+ </plugin >
91
+ </plugins >
92
+ </build >
93
+
94
+ </project >
0 commit comments