pom.xml 1.3 KB
Newer Older
S
shenhongxi 已提交
1 2 3 4 5
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
武汉红喜's avatar
武汉红喜 已提交
6
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
7
        <artifactId>whatsmars-spring-cloud</artifactId>
武汉红喜's avatar
武汉红喜 已提交
8
        <version>Rocket.S6</version>
S
shenhongxi 已提交
9
    </parent>
武汉红喜's avatar
武汉红喜 已提交
10
    <modelVersion>4.0.0</modelVersion>
S
shenhongxi 已提交
11

武汉红喜's avatar
rename  
武汉红喜 已提交
12
    <artifactId>whatsmars-cloud-consumer</artifactId>
武汉红喜's avatar
武汉红喜 已提交
13
    <name>${project.artifactId}</name>
武汉红喜's avatar
武汉红喜 已提交
14 15
    <packaging>jar</packaging>
    <description>Spring Cloud Consumer Demo</description>
武汉红喜's avatar
武汉红喜 已提交
16

S
shenhongxi 已提交
17 18 19
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
武汉红喜's avatar
武汉红喜 已提交
20
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
S
shenhongxi 已提交
21
        </dependency>
S
shenhongxi 已提交
22 23
        <dependency>
            <groupId>org.springframework.cloud</groupId>
武汉红喜's avatar
武汉红喜 已提交
24
            <artifactId>spring-cloud-starter-openfeign</artifactId>
S
shenhongxi 已提交
25
        </dependency>
武汉红喜's avatar
hystrix  
武汉红喜 已提交
26 27
        <dependency>
            <groupId>org.springframework.cloud</groupId>
武汉红喜's avatar
武汉红喜 已提交
28
            <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
武汉红喜's avatar
hystrix  
武汉红喜 已提交
29
        </dependency>
S
shenhongxi 已提交
30 31
        <dependency>
            <groupId>org.springframework.boot</groupId>
武汉红喜's avatar
武汉红喜 已提交
32
            <artifactId>spring-boot-starter-webflux</artifactId>
S
shenhongxi 已提交
33 34 35 36
        </dependency>
    </dependencies>


武汉红喜's avatar
武汉红喜 已提交
37
</project>