blob: f147ecc1c6c55614f35d8b865146b94b2f8482c2 [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 <packaging>jar</packaging>
12 <artifactId>ruoyi-admin</artifactId>
13
14 <description>
15 web服务入口
16 </description>
17
18 <dependencies>
19
20 <!-- spring-boot-devtools -->
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-devtools</artifactId>
24 <optional>true</optional> <!-- 表示依赖不会传递 -->
25 </dependency>
26
27 <!-- spring-doc -->
28 <dependency>
29 <groupId>org.springdoc</groupId>
30 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
31 </dependency>
32
33 <!-- Mysql驱动包 -->
34 <dependency>
35 <groupId>com.mysql</groupId>
36 <artifactId>mysql-connector-j</artifactId>
37 </dependency>
38
39 <!--mybatis-plus的springboot支持-->
40<!-- <dependency>-->
41<!-- <groupId> 导入冲突 com.baomidou</groupId>-->
42<!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
43<!-- <version>3.5.10.1</version>-->
44<!-- </dependency>-->
45
46 <dependency>
47 <groupId>com.turn.ttorrent</groupId>
48 <artifactId>ttorrent-cli-shaded</artifactId>
49 <version>1.3</version>
50 <scope>system</scope>
51 <systemPath>${project.basedir}/torrent/ttorrent-tracker.jar</systemPath>
52 </dependency>
53 <dependency>
54 <groupId>com.turn.ttorrent</groupId>
55 <artifactId>ttorrent-client</artifactId>
56 <version>1.3</version>
57 <scope>system</scope>
58 <systemPath>${project.basedir}/torrent/ttorrent-client.jar</systemPath>
59 </dependency>
60
meisiyuc98fc522025-06-02 20:33:40 +080061 <!-- 通用工具-->
62 <dependency>
63 <groupId>com.ruoyi</groupId>
64 <artifactId>ruoyi-common</artifactId>
65 </dependency>
66
Jiarenxiang25a45b72025-03-13 16:09:13 +080067 <!-- 核心模块-->
68 <dependency>
69 <groupId>com.ruoyi</groupId>
70 <artifactId>ruoyi-framework</artifactId>
71 </dependency>
72
73 <!-- 定时任务-->
74 <dependency>
75 <groupId>com.ruoyi</groupId>
76 <artifactId>ruoyi-quartz</artifactId>
77 </dependency>
78
79 <!-- 代码生成-->
80 <dependency>
81 <groupId>com.ruoyi</groupId>
82 <artifactId>ruoyi-generator</artifactId>
83 </dependency>
84
meisiyuc98fc522025-06-02 20:33:40 +080085 <!-- 测试依赖 -->
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-test</artifactId>
89 <scope>test</scope>
90 </dependency>
91
92 <dependency>
93 <groupId>org.junit.jupiter</groupId>
94 <artifactId>junit-jupiter</artifactId>
95 <scope>test</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>org.mockito</groupId>
100 <artifactId>mockito-core</artifactId>
101 <scope>test</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>org.mockito</groupId>
106 <artifactId>mockito-junit-jupiter</artifactId>
107 <scope>test</scope>
108 </dependency>
109
110 <!-- Spring Security Test Support -->
111 <dependency>
112 <groupId>org.springframework.security</groupId>
113 <artifactId>spring-security-test</artifactId>
114 <scope>test</scope>
115 </dependency>
116
崔向南03d21b92025-06-05 17:42:23 +0800117 <dependency>
118 <groupId>com.ruoyi</groupId>
119 <artifactId>ruoyi-system</artifactId>
120 <version>3.8.8</version>
121 </dependency>
122
Jiarenxiang25a45b72025-03-13 16:09:13 +0800123 </dependencies>
124
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.springframework.boot</groupId>
129 <artifactId>spring-boot-maven-plugin</artifactId>
130 <version>2.5.15</version>
131 <configuration>
132 <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
133 </configuration>
134 <executions>
135 <execution>
136 <goals>
137 <goal>repackage</goal>
138 </goals>
139 </execution>
140 </executions>
141 </plugin>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-war-plugin</artifactId>
145 <version>3.1.0</version>
146 <configuration>
147 <failOnMissingWebXml>false</failOnMissingWebXml>
148 <warName>${project.artifactId}</warName>
149 </configuration>
150 </plugin>
151 </plugins>
152 <finalName>${project.artifactId}</finalName>
153 </build>
154
155</project>