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>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>
<groupId>org.apache.tomcat.embed</groupId>
|
820f688d
陈杰
网关
|
36
37
38
39
40
|
<artifactId>tomcat-embed-core</artifactId>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
|
b7ccb8ad
陈杰
学情 排课 嵌入分布式
|
41
42
43
44
45
46
47
48
49
50
|
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
|
7d998aa6
陶汉栋
Merge branch 'mas...
|
51
52
53
54
|
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
|
7d998aa6
陶汉栋
Merge branch 'mas...
|
55
|
</dependency>
|
7d998aa6
陶汉栋
Merge branch 'mas...
|
56
57
|
<dependency>
<groupId>io.springfox</groupId>
|
a94761b5
陶汉栋
no message
|
58
|
<artifactId>springfox-swagger2</artifactId>
|
a94761b5
陶汉栋
no message
|
59
|
<version>2.5.0</version>
|
7d998aa6
陶汉栋
Merge branch 'mas...
|
60
61
62
|
</dependency>
<dependency>
<groupId>io.springfox</groupId>
|
a94761b5
陶汉栋
no message
|
63
|
<artifactId>springfox-swagger-ui</artifactId>
|
b7ccb8ad
陈杰
学情 排课 嵌入分布式
|
64
65
66
|
<version>2.5.0</version>
</dependency>
<dependency>
|
820f688d
陈杰
网关
|
67
|
<groupId>commons-net</groupId>
|
b7ccb8ad
陈杰
学情 排课 嵌入分布式
|
68
69
70
71
|
<artifactId>commons-net</artifactId>
<version>2.0</version>
</dependency>
<dependency>
|
820f688d
陈杰
网关
|
72
|
<groupId>org.apache.poi</groupId>
|
b7ccb8ad
陈杰
学情 排课 嵌入分布式
|
73
|
<artifactId>poi</artifactId>
|
96601d7c
陈杰
学情 排课 嵌入分布式
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<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>
<dependency>
<groupId>com.vaadin.external.google</groupId>
<artifactId>android-json</artifactId>
<version>0.0.20131108.vaadin1</version>
<scope>compile</scope>
</dependency>
</dependencies>
|
3bc07178
陶汉栋
no message
|
95
96
97
98
99
100
|
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
|
e87d4e3a
陈杰
翼学云读写 接口
|
101
102
103
104
105
106
107
|
<classifier>exec</classifier>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
a94761b5
陶汉栋
no message
|
|
|
b8a3cdaf
徐泉
智能校卫一阶段代码提交
|
|
|
e92e5a92
陶汉栋
增加网关负载
|
|
|
b8a3cdaf
徐泉
智能校卫一阶段代码提交
|
|
|
a94761b5
陶汉栋
no message
|
|
|