Blame view

cloud/common/pom.xml 4.15 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>1.0.0</version>
7d998aa6   陶汉栋   Merge branch 'mas...
13
    <name>common</name>
2382f6c5   陈杰   打包问题解决
14
15

    <packaging>jar</packaging>
a94761b5   陶汉栋   no message
16
17
18
19
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
27ae8e11   陶汉栋   no message
20
        <skipTests>true</skipTests>
a94761b5   陶汉栋   no message
21
22
23
24
    </properties>

    <dependencies>
        <dependency>
79abf011   陈杰   博冠人脸机
25
26
27
28
29
30
31
32
33
34
35
            <groupId>cn.rongcloud.im</groupId>
            <artifactId>server-sdk-java</artifactId>
            <version>3.1.4</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/com.sun.mail/javax.mail -->
        <dependency>
            <groupId>com.sun.mail</groupId>
            <artifactId>javax.mail</artifactId>
            <version>1.6.2</version>
        </dependency>
        <dependency>
820f688d   陈杰   网关
36
37
38
39
40
            <groupId>com.nimbusds</groupId>
            <artifactId>nimbus-jose-jwt</artifactId>
            <version>6.0</version>
        </dependency>
        <dependency>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
41
42
43
44
45
46
47
48
49
50
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>2.9.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.3</version>
        </dependency>
        <dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
51
52
53
54
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <version>0.9.0</version>
        </dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
55
        <dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
56
57
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
a94761b5   陶汉栋   no message
58
        </dependency>
a94761b5   陶汉栋   no message
59
        <dependency>
7d998aa6   陶汉栋   Merge branch 'mas...
60
61
62
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2.2</version>
a94761b5   陶汉栋   no message
63
        </dependency>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
64
65
66
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
820f688d   陈杰   网关
67
            <version>2.9.2</version>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
68
69
70
71
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
820f688d   陈杰   网关
72
            <version>2.9.2</version>
b7ccb8ad   陈杰   学情 排课 嵌入分布式
73
        </dependency>
96601d7c   陈杰   学情 排课 嵌入分布式
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
        <dependency>
            <groupId>commons-net</groupId>
            <artifactId>commons-net</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.0</version>
        </dependency>

        <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>
3bc07178   陶汉栋   no message
95
96
97
98
99
100
        <dependency>
            <groupId>com.vaadin.external.google</groupId>
            <artifactId>android-json</artifactId>
            <version>0.0.20131108.vaadin1</version>
            <scope>compile</scope>
        </dependency>
e87d4e3a   陈杰   翼学云读写 接口
101
102
103
104
105
106
107
108
109
110
        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.1</version>
        </dependency>
a94761b5   陶汉栋   no message
111
112
    </dependencies>

b8a3cdaf   徐泉   智能校卫一阶段代码提交
113
    <build>
e92e5a92   陶汉栋   增加网关负载
114
115
116
117
118
119
120
121
122
         <plugins>
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
                 <configuration>
                     <classifier>exec</classifier>
                 </configuration>
             </plugin>
         </plugins>
b8a3cdaf   徐泉   智能校卫一阶段代码提交
123
     </build>
a94761b5   陶汉栋   no message
124
125

</project>