Blame view

cloud/weigeng/pom.xml 3.22 KB
b290142e   陶汉栋   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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
5efb4092   陈杰   微耕服务 嵌入分布式
6
7
8
        <artifactId>cloud</artifactId>
        <groupId>com.sincere</groupId>
        <version>1.0.0</version>
b290142e   陶汉栋   no message
9
10
11
12
13
14
15
    </parent>
    <groupId>com.sincere</groupId>
    <artifactId>weigeng</artifactId>
    <version>0.0.1</version>
    <name>weigeng</name>
    <description>Demo project for Spring Boot</description>

e92e5a92   陶汉栋   增加网关负载
16
17
18
19
    <!--    <properties>-->
    <!--        <java.version>1.8</java.version>-->
    <!--        <spring-cloud.version>Finchley.SR1</spring-cloud.version>-->
    <!--    </properties>-->
b290142e   陶汉栋   no message
20
21
22

    <dependencies>
        <dependency>
02191019   陈杰   考勤推送修改,绑定关注逻辑
23
24
25
26
27
            <groupId>io.netty</groupId>
            <artifactId>netty-all</artifactId>
            <version>4.1.33.Final</version>
        </dependency>
        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
28
29
            <groupId>com.sincere</groupId>
            <artifactId>common</artifactId>
81cae9e2   陈杰   考勤推送
30
            <version>1.0.0</version>
b290142e   陶汉栋   no message
31
32
        </dependency>
        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
33
34
35
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.0</version>
b290142e   陶汉栋   no message
36
37
38
        </dependency>

        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
39
40
41
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
b290142e   陶汉栋   no message
42
        </dependency>
b290142e   陶汉栋   no message
43
        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
44
45
46
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-feign</artifactId>
            <version>1.3.6.RELEASE</version>
b290142e   陶汉栋   no message
47
        </dependency>
b290142e   陶汉栋   no message
48
        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
49
50
51
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-openfeign-core</artifactId>
            <version>2.1.2.RELEASE</version>
9962583e   陶汉栋   no message
52
        </dependency>
9962583e   陶汉栋   no message
53
        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
54
55
56
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.5.0</version>
b290142e   陶汉栋   no message
57
        </dependency>
b290142e   陶汉栋   no message
58
        <dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
59
60
61
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.5.0</version>
b290142e   陶汉栋   no message
62
        </dependency>
5efb4092   陈杰   微耕服务 嵌入分布式
63
64
65
66
67
68
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.3.2</version>
        </dependency>

b290142e   陶汉栋   no message
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
b290142e   陶汉栋   no message
84
        <plugins>
b290142e   陶汉栋   no message
85
            <plugin>
b537495d   陈杰   微耕
86
87
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
b290142e   陶汉栋   no message
88
                <configuration>
b537495d   陈杰   微耕
89
                    <includeSystemScope>true</includeSystemScope>
b290142e   陶汉栋   no message
90
91
                </configuration>
            </plugin>
b537495d   陈杰   微耕
92

b290142e   陶汉栋   no message
93
94
95
96
        </plugins>
    </build>

</project>