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 >order</artifactId >
7
+ <groupId >cn.algerfan</groupId >
8
+ <version >0.0.1-SNAPSHOT</version >
9
+ </parent >
10
+ <modelVersion >4.0.0</modelVersion >
11
+
12
+ <artifactId >order-server</artifactId >
13
+
14
+ <dependencies >
15
+ <dependency >
16
+ <groupId >org.springframework.cloud</groupId >
17
+ <artifactId >spring-cloud-starter-netflix-eureka-client</artifactId >
18
+ </dependency >
19
+ <!-- TODO spring-cloud-starter-feign ——> spring-cloud-starter-openfeign-->
20
+ <dependency >
21
+ <groupId >org.springframework.cloud</groupId >
22
+ <artifactId >spring-cloud-starter-openfeign</artifactId >
23
+ </dependency >
24
+ <!-- TODO spring-cloud-starter-hystrix ——> spring-cloud-starter-netflix-hystrix-->
25
+ <!-- TODO 2.0.2.RELEASE需要引入-->
26
+ <dependency >
27
+ <groupId >org.springframework.boot</groupId >
28
+ <artifactId >spring-boot-starter-web</artifactId >
29
+ </dependency >
30
+ <dependency >
31
+ <groupId >org.springframework.boot</groupId >
32
+ <artifactId >spring-boot-starter-data-jpa</artifactId >
33
+ </dependency >
34
+ <dependency >
35
+ <groupId >mysql</groupId >
36
+ <artifactId >mysql-connector-java</artifactId >
37
+ </dependency >
38
+ <dependency >
39
+ <groupId >org.projectlombok</groupId >
40
+ <artifactId >lombok</artifactId >
41
+ </dependency >
42
+ <dependency >
43
+ <groupId >com.google.code.gson</groupId >
44
+ <artifactId >gson</artifactId >
45
+ </dependency >
46
+ <dependency >
47
+ <groupId >org.springframework.cloud</groupId >
48
+ <artifactId >spring-cloud-config-client</artifactId >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >cn.algerfan</groupId >
52
+ <artifactId >product-client</artifactId >
53
+ <version >${product-client.version} </version >
54
+ </dependency >
55
+ <dependency >
56
+ <groupId >cn.algerfan</groupId >
57
+ <artifactId >product-common</artifactId >
58
+ <version >${product-common.version} </version >
59
+ </dependency >
60
+
61
+ <dependency >
62
+ <groupId >org.springframework.boot</groupId >
63
+ <artifactId >spring-boot-starter-test</artifactId >
64
+ <scope >test</scope >
65
+ </dependency >
66
+ </dependencies >
67
+
68
+ <build >
69
+ <plugins >
70
+ <plugin >
71
+ <groupId >org.springframework.boot</groupId >
72
+ <artifactId >spring-boot-maven-plugin</artifactId >
73
+ </plugin >
74
+ </plugins >
75
+ </build >
76
+
77
+ </project >
0 commit comments