Blame view

cloud/consumer/pom.xml 1.34 KB
a94761b5   陶汉栋   no message
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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
f07769a9   陈杰   代码整理
6
7
8
        <groupId>com.sincere</groupId>
        <artifactId>cloud</artifactId>
        <version>1.0.0</version>
a94761b5   陶汉栋   no message
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
    </parent>
    <groupId>com.example</groupId>
    <artifactId>consumer</artifactId>
    <version>1.0.0</version>
    <name>consumer</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
a94761b5   陶汉栋   no message
26
27
            <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
        </dependency>
a94761b5   陶汉栋   no message
28
29
    </dependencies>

a94761b5   陶汉栋   no message
30
31
32
33
34
35
36
37
38
39
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>