blob: 8053e2b835b11281570689631a3fd71e72ae15a3 [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
61 <!-- 核心模块-->
62 <dependency>
63 <groupId>com.ruoyi</groupId>
64 <artifactId>ruoyi-framework</artifactId>
65 </dependency>
66
67 <!-- 定时任务-->
68 <dependency>
69 <groupId>com.ruoyi</groupId>
70 <artifactId>ruoyi-quartz</artifactId>
71 </dependency>
72
73 <!-- 代码生成-->
74 <dependency>
75 <groupId>com.ruoyi</groupId>
76 <artifactId>ruoyi-generator</artifactId>
77 </dependency>
78
79 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-maven-plugin</artifactId>
86 <version>2.5.15</version>
87 <configuration>
88 <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
89 </configuration>
90 <executions>
91 <execution>
92 <goals>
93 <goal>repackage</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-war-plugin</artifactId>
101 <version>3.1.0</version>
102 <configuration>
103 <failOnMissingWebXml>false</failOnMissingWebXml>
104 <warName>${project.artifactId}</warName>
105 </configuration>
106 </plugin>
107 </plugins>
108 <finalName>${project.artifactId}</finalName>
109 </build>
110
111</project>