1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <artifactId >hystrix</artifactId >
7+ <groupId >com.fd</groupId >
8+ <version >1.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >hystrix-sample-eureka-feign-client</artifactId >
13+
14+ <properties >
15+ <spring .cloud.starter.hystrix.version>1.4.5.RELEASE</spring .cloud.starter.hystrix.version>
16+ </properties >
17+
18+ <dependencies >
19+ <dependency >
20+ <groupId >org.springframework.cloud</groupId >
21+ <artifactId >spring-cloud-starter-hystrix</artifactId >
22+ <version >${spring.cloud.starter.hystrix.version} </version >
23+ </dependency >
24+
25+ <dependency >
26+ <groupId >org.springframework.cloud</groupId >
27+ <artifactId >spring-cloud-starter-openfeign</artifactId >
28+ <exclusions >
29+ <exclusion >
30+ <groupId >ch.qos.logback</groupId >
31+ <artifactId >logback-classic</artifactId >
32+ </exclusion >
33+
34+ <exclusion >
35+ <groupId >org.apache.logging.log4j</groupId >
36+ <artifactId >log4j-to-slf4j</artifactId >
37+ </exclusion >
38+ </exclusions >
39+ </dependency >
40+
41+ <dependency >
42+ <groupId >org.springframework.cloud</groupId >
43+ <artifactId >spring-cloud-starter-netflix-eureka-client</artifactId >
44+ <exclusions >
45+ <exclusion >
46+ <groupId >ch.qos.logback</groupId >
47+ <artifactId >logback-classic</artifactId >
48+ </exclusion >
49+
50+ <exclusion >
51+ <groupId >org.apache.logging.log4j</groupId >
52+ <artifactId >log4j-to-slf4j</artifactId >
53+ </exclusion >
54+ </exclusions >
55+ </dependency >
56+
57+ <dependency >
58+ <groupId >org.springframework.boot</groupId >
59+ <artifactId >spring-boot-starter-web</artifactId >
60+ <exclusions >
61+ <exclusion >
62+ <groupId >ch.qos.logback</groupId >
63+ <artifactId >logback-classic</artifactId >
64+ </exclusion >
65+
66+ <exclusion >
67+ <groupId >org.apache.logging.log4j</groupId >
68+ <artifactId >log4j-to-slf4j</artifactId >
69+ </exclusion >
70+ </exclusions >
71+ </dependency >
72+
73+ <dependency >
74+ <groupId >org.springframework.boot</groupId >
75+ <artifactId >spring-boot-starter-data-redis</artifactId >
76+ <exclusions >
77+ <exclusion >
78+ <groupId >ch.qos.logback</groupId >
79+ <artifactId >logback-classic</artifactId >
80+ </exclusion >
81+
82+ <exclusion >
83+ <groupId >org.apache.logging.log4j</groupId >
84+ <artifactId >log4j-to-slf4j</artifactId >
85+ </exclusion >
86+ </exclusions >
87+ </dependency >
88+
89+ <dependency >
90+ <groupId >com.fd</groupId >
91+ <artifactId >hystrix-sample-dto</artifactId >
92+ <version >1.0-SNAPSHOT</version >
93+ </dependency >
94+
95+ <dependency >
96+ <groupId >org.apache.logging.log4j</groupId >
97+ <artifactId >log4j-core</artifactId >
98+ </dependency >
99+
100+ <dependency >
101+ <groupId >org.apache.logging.log4j</groupId >
102+ <artifactId >log4j-slf4j-impl</artifactId >
103+ </dependency >
104+ </dependencies >
105+
106+ </project >
0 commit comments