pom.xml 1.3 KB
Newer Older
S
shenhongxi 已提交
1 2 3 4
<?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">
武汉红喜's avatar
武汉红喜 已提交
5
    <modelVersion>4.0.0</modelVersion>
S
shenhongxi 已提交
6 7

    <parent>
武汉红喜's avatar
武汉红喜 已提交
8
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
9
        <artifactId>whatsmars-spring-cloud</artifactId>
武汉红喜's avatar
武汉红喜 已提交
10
        <version>Rocket.S2</version>
S
shenhongxi 已提交
11 12
    </parent>

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

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


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