Blame view

cloud/common/pom.xml 3.12 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>com.sincere</groupId>
        <artifactId>cloud</artifactId>
        <version>1.0.0</version>
a94761b5   陶汉栋   no message
9
    </parent>
7d998aa6   陶汉栋   Merge branch 'mas...
10
11
    <groupId>com.sincere</groupId>
    <artifactId>common</artifactId>
2382f6c5   陈杰   打包问题解决
12
    <version>0.0.1-SNAPSHOT</version>
7d998aa6   陶汉栋   Merge branch 'mas...
13
    <name>common</name>
2382f6c5   陈杰   打包问题解决
14
15
    <description>Demo project for Spring Boot</description>

a94761b5   陶汉栋   no message
16
17
18
19
    <properties>
        <java.version>1.8</java.version>
    </properties>

27ae8e11   陶汉栋   no message
20
    <dependencies>
a94761b5   陶汉栋   no message
21
22
23
24
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>2.9.0</version>
79abf011   陈杰   博冠人脸机
25
26
27
28
29
30
31
32
33
34
35
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-core</artifactId>
        </dependency>
        <dependency>
820f688d   陈杰   网关
36
37
38
39
40
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <version>0.9.0</version>
        </dependency>
        <dependency>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
41
42
43
44
45
46
47
48
49
50
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
7d998aa6   陶汉栋   Merge branch 'mas...
51
52
53
54
            <version>3.2.2</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
7d998aa6   陶汉栋   Merge branch 'mas...
55
            <artifactId>springfox-swagger2</artifactId>
7d998aa6   陶汉栋   Merge branch 'mas...
56
57
            <version>2.5.0</version>
        </dependency>
a94761b5   陶汉栋   no message
58
        <dependency>
a94761b5   陶汉栋   no message
59
            <groupId>io.springfox</groupId>
7d998aa6   陶汉栋   Merge branch 'mas...
60
61
62
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.5.0</version>
        </dependency>
a94761b5   陶汉栋   no message
63
        <dependency>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
64
65
66
            <groupId>commons-net</groupId>
            <artifactId>commons-net</artifactId>
            <version>2.0</version>
820f688d   陈杰   网关
67
        </dependency>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
68
69
70
71
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.0</version>
820f688d   陈杰   网关
72
        </dependency>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
73

96601d7c   陈杰   学情 排课 嵌入分布式
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.3.2</version>
        </dependency>
    </dependencies>

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

3bc07178   陶汉栋   no message
95
</project>
e87d4e3a   陈杰   翼学云读写 接口

a94761b5   陶汉栋   no message

b8a3cdaf   徐泉   智能校卫一阶段代码提交

e92e5a92   陶汉栋   增加网关负载

b8a3cdaf   徐泉   智能校卫一阶段代码提交

a94761b5   陶汉栋   no message