提交 | 用户 | 时间
|
0ca254
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
A |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
5 |
<parent> |
|
6 |
<artifactId>jcdm</artifactId> |
|
7 |
<groupId>com.jcdm</groupId> |
|
8 |
<version>3.8.6</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
|
|
12 |
<artifactId>jcdm-framework</artifactId> |
|
13 |
|
|
14 |
<description> |
|
15 |
framework框架核心 |
|
16 |
</description> |
|
17 |
|
|
18 |
<dependencies> |
|
19 |
|
|
20 |
<!-- SpringBoot Web容器 --> |
|
21 |
<dependency> |
|
22 |
<groupId>org.springframework.boot</groupId> |
|
23 |
<artifactId>spring-boot-starter-web</artifactId> |
|
24 |
</dependency> |
|
25 |
|
|
26 |
<!-- SpringBoot 拦截器 --> |
|
27 |
<dependency> |
|
28 |
<groupId>org.springframework.boot</groupId> |
|
29 |
<artifactId>spring-boot-starter-aop</artifactId> |
|
30 |
</dependency> |
|
31 |
|
|
32 |
<!-- 阿里数据库连接池 --> |
|
33 |
<dependency> |
|
34 |
<groupId>com.alibaba</groupId> |
|
35 |
<artifactId>druid-spring-boot-starter</artifactId> |
|
36 |
</dependency> |
|
37 |
|
|
38 |
<!-- 验证码 --> |
|
39 |
<dependency> |
|
40 |
<groupId>pro.fessional</groupId> |
|
41 |
<artifactId>kaptcha</artifactId> |
|
42 |
<exclusions> |
|
43 |
<exclusion> |
|
44 |
<artifactId>servlet-api</artifactId> |
|
45 |
<groupId>javax.servlet</groupId> |
|
46 |
</exclusion> |
|
47 |
</exclusions> |
|
48 |
</dependency> |
|
49 |
|
|
50 |
<!-- 获取系统信息 --> |
|
51 |
<dependency> |
|
52 |
<groupId>com.github.oshi</groupId> |
|
53 |
<artifactId>oshi-core</artifactId> |
|
54 |
</dependency> |
|
55 |
|
|
56 |
<!-- 系统模块--> |
|
57 |
<dependency> |
|
58 |
<groupId>com.jcdm</groupId> |
|
59 |
<artifactId>jcdm-system</artifactId> |
|
60 |
</dependency> |
|
61 |
|
|
62 |
<!-- SpringBoot Websocket --> |
|
63 |
<dependency> |
|
64 |
<groupId>org.springframework.boot</groupId> |
|
65 |
<artifactId>spring-boot-starter-websocket</artifactId> |
|
66 |
</dependency> |
|
67 |
|
|
68 |
</dependencies> |
|
69 |
|
|
70 |
</project> |