1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
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" >
4+ <modelVersion >4.0.0</modelVersion >
5+
6+ <groupId >com.didispace</groupId >
7+ <artifactId >config-client-eureka</artifactId >
8+ <version >1.0.0</version >
9+ <packaging >jar</packaging >
10+
11+ <name >config-client-eureka</name >
12+ <description >Spring Cloud project</description >
13+
14+ <parent >
15+ <groupId >org.springframework.boot</groupId >
16+ <artifactId >spring-boot-starter-parent</artifactId >
17+ <version >1.3.7.RELEASE</version >
18+ <relativePath /> <!-- lookup parent from repository -->
19+ </parent >
20+
21+ <properties >
22+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
23+ <java .version>1.8</java .version>
24+ </properties >
25+
26+ <dependencies >
27+ <dependency >
28+ <groupId >org.springframework.retry</groupId >
29+ <artifactId >spring-retry</artifactId >
30+ </dependency >
31+ <dependency >
32+ <groupId >org.springframework.boot</groupId >
33+ <artifactId >spring-boot-starter-web</artifactId >
34+ </dependency >
35+ <dependency >
36+ <groupId >org.springframework.boot</groupId >
37+ <artifactId >spring-boot-starter-aop</artifactId >
38+ </dependency >
39+ <dependency >
40+ <groupId >org.springframework.boot</groupId >
41+ <artifactId >spring-boot-starter-actuator</artifactId >
42+ </dependency >
43+ <dependency >
44+ <groupId >org.springframework.cloud</groupId >
45+ <artifactId >spring-cloud-starter-config</artifactId >
46+ </dependency >
47+ <dependency >
48+ <groupId >org.springframework.cloud</groupId >
49+ <artifactId >spring-cloud-starter-eureka</artifactId >
50+ </dependency >
51+ <dependency >
52+ <groupId >org.springframework.cloud</groupId >
53+ <artifactId >spring-cloud-starter-bus-amqp</artifactId >
54+ </dependency >
55+ </dependencies >
56+
57+ <dependencyManagement >
58+ <dependencies >
59+ <dependency >
60+ <groupId >org.springframework.cloud</groupId >
61+ <artifactId >spring-cloud-dependencies</artifactId >
62+ <version >Brixton.SR5</version >
63+ <type >pom</type >
64+ <scope >import</scope >
65+ </dependency >
66+ </dependencies >
67+ </dependencyManagement >
68+
69+ <build >
70+ <plugins >
71+ <plugin >
72+ <groupId >org.springframework.boot</groupId >
73+ <artifactId >spring-boot-maven-plugin</artifactId >
74+ </plugin >
75+ </plugins >
76+ </build >
77+
78+ </project >
0 commit comments