blob: a746e6d822186b9af1c3a60d246fb8fb7b8bc95b [file] [log] [blame]
Jiarenxiang25a45b72025-03-13 16:09:13 +08001<?xml version="1.0" encoding="UTF-8"?>
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>ThunderHubServer</artifactId>
7 <groupId>com.ruoyi</groupId>
8 <version>3.8.8</version>
9 </parent>
10 <modelVersion>4.0.0</modelVersion>
11
12 <artifactId>ruoyi-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>jakarta.servlet</groupId>
119 <artifactId>jakarta.servlet-api</artifactId>
120 </dependency>
121
122 </dependencies>
123
meisiyuc98fc522025-06-02 20:33:40 +0800124 <build>
125 <plugins>
126 <plugin>
127 <groupId>org.springframework.boot</groupId>
128 <artifactId>spring-boot-maven-plugin</artifactId>
129 <configuration>
130 <skip>true</skip>
131 </configuration>
132 </plugin>
133 </plugins>
134 </build>
135
Jiarenxiang25a45b72025-03-13 16:09:13 +0800136</project>