提交 | 用户 | 时间
|
a6316e
|
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>billion</artifactId> |
|
7 |
<groupId>com.billion</groupId> |
|
8 |
<version>3.8.8</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
|
|
12 |
<artifactId>billion-common</artifactId> |
|
13 |
|
|
14 |
<description> |
|
15 |
common通用工具 |
|
16 |
</description> |
|
17 |
|
|
18 |
<dependencies> |
|
19 |
|
|
20 |
<!-- Spring框架基本的核心工具 --> |
|
21 |
<dependency> |
|
22 |
<groupId>org.springframework</groupId> |
|
23 |
<artifactId>spring-context-support</artifactId> |
|
24 |
</dependency> |
|
25 |
|
|
26 |
<!-- SpringWeb模块 --> |
|
27 |
<dependency> |
|
28 |
<groupId>org.springframework</groupId> |
|
29 |
<artifactId>spring-web</artifactId> |
|
30 |
</dependency> |
|
31 |
|
|
32 |
<!-- spring security 安全认证 --> |
|
33 |
<dependency> |
|
34 |
<groupId>org.springframework.boot</groupId> |
|
35 |
<artifactId>spring-boot-starter-security</artifactId> |
|
36 |
</dependency> |
|
37 |
|
|
38 |
<!-- pagehelper 分页插件 --> |
|
39 |
<dependency> |
|
40 |
<groupId>com.github.pagehelper</groupId> |
|
41 |
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
42 |
</dependency> |
|
43 |
|
|
44 |
<!-- 自定义验证注解 --> |
|
45 |
<dependency> |
|
46 |
<groupId>org.springframework.boot</groupId> |
|
47 |
<artifactId>spring-boot-starter-validation</artifactId> |
|
48 |
</dependency> |
|
49 |
|
|
50 |
<!--常用工具类 --> |
|
51 |
<dependency> |
|
52 |
<groupId>org.apache.commons</groupId> |
|
53 |
<artifactId>commons-lang3</artifactId> |
|
54 |
</dependency> |
|
55 |
|
|
56 |
<!-- JSON工具类 --> |
|
57 |
<dependency> |
|
58 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
59 |
<artifactId>jackson-databind</artifactId> |
|
60 |
</dependency> |
|
61 |
|
|
62 |
<!-- 阿里JSON解析器 --> |
|
63 |
<dependency> |
|
64 |
<groupId>com.alibaba.fastjson2</groupId> |
|
65 |
<artifactId>fastjson2</artifactId> |
|
66 |
</dependency> |
|
67 |
|
|
68 |
<!-- io常用工具类 --> |
|
69 |
<dependency> |
|
70 |
<groupId>commons-io</groupId> |
|
71 |
<artifactId>commons-io</artifactId> |
|
72 |
</dependency> |
|
73 |
|
|
74 |
<!-- excel工具 --> |
|
75 |
<dependency> |
|
76 |
<groupId>org.apache.poi</groupId> |
|
77 |
<artifactId>poi-ooxml</artifactId> |
|
78 |
</dependency> |
|
79 |
|
|
80 |
<!-- yml解析器 --> |
|
81 |
<dependency> |
|
82 |
<groupId>org.yaml</groupId> |
|
83 |
<artifactId>snakeyaml</artifactId> |
|
84 |
</dependency> |
|
85 |
|
|
86 |
<!-- Token生成与解析--> |
|
87 |
<dependency> |
|
88 |
<groupId>io.jsonwebtoken</groupId> |
|
89 |
<artifactId>jjwt</artifactId> |
|
90 |
</dependency> |
|
91 |
|
|
92 |
<!-- Jaxb --> |
|
93 |
<dependency> |
|
94 |
<groupId>javax.xml.bind</groupId> |
|
95 |
<artifactId>jaxb-api</artifactId> |
|
96 |
</dependency> |
|
97 |
|
|
98 |
<!-- redis 缓存操作 --> |
|
99 |
<dependency> |
|
100 |
<groupId>org.springframework.boot</groupId> |
|
101 |
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
102 |
</dependency> |
|
103 |
|
|
104 |
<!-- pool 对象池 --> |
|
105 |
<dependency> |
|
106 |
<groupId>org.apache.commons</groupId> |
|
107 |
<artifactId>commons-pool2</artifactId> |
|
108 |
</dependency> |
|
109 |
|
|
110 |
<!-- 解析客户端操作系统、浏览器等 --> |
|
111 |
<dependency> |
|
112 |
<groupId>eu.bitwalker</groupId> |
|
113 |
<artifactId>UserAgentUtils</artifactId> |
|
114 |
</dependency> |
|
115 |
|
|
116 |
<!-- servlet包 --> |
|
117 |
<dependency> |
|
118 |
<groupId>javax.servlet</groupId> |
|
119 |
<artifactId>javax.servlet-api</artifactId> |
|
120 |
</dependency> |
|
121 |
|
|
122 |
<!-- mybatis-plus 增强CRUD --> |
|
123 |
<dependency> |
|
124 |
<groupId>com.baomidou</groupId> |
|
125 |
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
126 |
<version>3.5.1</version> |
|
127 |
</dependency> |
|
128 |
|
|
129 |
</dependencies> |
|
130 |
|
|
131 |
</project> |