Blame view

cloud/autho/pom.xml 3.48 KB
a94761b5   陶汉栋   no message
1
2
<?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"
7d998aa6   陶汉栋   Merge branch 'mas...
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
a94761b5   陶汉栋   no message
4
5
    <modelVersion>4.0.0</modelVersion>
    <parent>
f07769a9   陈杰   代码整理
6
7
8
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.7.RELEASE</version>
a94761b5   陶汉栋   no message
9
        <relativePath/> <!-- lookup parent from repository -->
7d998aa6   陶汉栋   Merge branch 'mas...
10
11
12
13
    </parent>
    <groupId>com.sincere</groupId>
    <artifactId>autho</artifactId>
    <version>0.0.1</version>
a94761b5   陶汉栋   no message
14
15
    <name>autho</name>
    <description>Demo project for Spring Boot</description>
a94761b5   陶汉栋   no message
16
17

    <properties>
7d998aa6   陶汉栋   Merge branch 'mas...
18
19
        <java.version>1.8</java.version>
        <spring-cloud.version>Greenwich.SR2</spring-cloud.version>
e5d1fbed   陈杰   认证中心 登录接口
20
    </properties>
7d998aa6   陶汉栋   Merge branch 'mas...
21

e92e5a92   陶汉栋   增加网关负载
22
23
24
25
26
    <dependencies>
        <dependency>
            <groupId>com.sincere</groupId>
            <artifactId>common</artifactId>
            <version>0.0.1-SNAPSHOT</version>
7d998aa6   陶汉栋   Merge branch 'mas...
27
28
        </dependency>
        <dependency>
e5d1fbed   陈杰   认证中心 登录接口
29
30
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
7d998aa6   陶汉栋   Merge branch 'mas...
31
        </dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
32
33
        <dependency>
            <groupId>org.springframework.cloud</groupId>
e5d1fbed   陈杰   认证中心 登录接口
34
35
            <artifactId>spring-cloud-starter-oauth2</artifactId>
        </dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
36

7d998aa6   陶汉栋   Merge branch 'mas...
37
        <dependency>
e5d1fbed   陈杰   认证中心 登录接口
38
39
40
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-security</artifactId>
            <version>2.1.3.RELEASE</version>
7d998aa6   陶汉栋   Merge branch 'mas...
41
42
        </dependency>

e5d1fbed   陈杰   认证中心 登录接口
43
44
45
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
7d998aa6   陶汉栋   Merge branch 'mas...
46
            <scope>test</scope>
7d998aa6   陶汉栋   Merge branch 'mas...
47
        </dependency>
e5d1fbed   陈杰   认证中心 登录接口
48
49
50

        <dependency>
            <groupId>org.springframework.cloud</groupId>
7d998aa6   陶汉栋   Merge branch 'mas...
51
            <artifactId>spring-cloud-starter-openfeign</artifactId>
7d998aa6   陶汉栋   Merge branch 'mas...
52
        </dependency>
e5d1fbed   陈杰   认证中心 登录接口
53
54

        <dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
55
            <groupId>org.springframework.boot</groupId>
a94761b5   陶汉栋   no message
56
57
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
e5d1fbed   陈杰   认证中心 登录接口
58
59
60
61
62
63
64
65
66
67
68
69
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.58</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-core</artifactId>
            <version>1.18.0</version>
        </dependency>
a94761b5   陶汉栋   no message
70

e5d1fbed   陈杰   认证中心 登录接口
71
        <dependency>
5a926884   陶汉栋   网关中添加处理上下游服务重复添加跨域问题
72
            <groupId>io.springfox</groupId>
e5d1fbed   陈杰   认证中心 登录接口
73
            <artifactId>springfox-swagger2</artifactId>
a94761b5   陶汉栋   no message
74
            <version>2.9.2</version>
e5d1fbed   陈杰   认证中心 登录接口
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
        </dependency>

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.9.2</version>
        </dependency>

    </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>
5a926884   陶汉栋   网关中添加处理上下游服务重复添加跨域问题
94
        </dependencies>
e5d1fbed   陈杰   认证中心 登录接口
95
96
97
98
99
100
101
102
103
104
105
106
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
a94761b5   陶汉栋   no message

e5d1fbed   陈杰   认证中心 登录接口

a94761b5   陶汉栋   no message

a94761b5   陶汉栋   no message