blob: 9007b9b27689790864d6e6448941a6e26ea8d32f [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-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-3-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.ruoyi</groupId>
59 <artifactId>ruoyi-system</artifactId>
60 </dependency>
Jiarenxiang5f4247d2025-06-06 18:10:35 +080061 <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
62 <dependency>
63 <groupId>cn.dev33</groupId>
64 <artifactId>sa-token-spring-boot3-starter</artifactId>
65 <version>1.38.0</version>
66 </dependency>
Jiarenxiang25a45b72025-03-13 16:09:13 +080067 </dependencies>
68
meisiyuc98fc522025-06-02 20:33:40 +080069 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-maven-plugin</artifactId>
74 <configuration>
75 <skip>true</skip>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80
Jiarenxiang25a45b72025-03-13 16:09:13 +080081</project>