blob: d4d9fc23022b38c0a71706cf79dc059a101825fa [file] [log] [blame]
wuchimedesa1bf2782025-03-27 15:08:54 +08001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>3.4.4</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example</groupId>
12 <artifactId>G8Backend</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>G8Backend</name>
15 <description>G8Backend</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>17</java.version>
31 </properties>
32 <dependencies>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-web</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>com.baomidou</groupId>
39 <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
40 <version>3.5.11</version>
41 </dependency>
42
夜雨声烦7e6eb382025-04-22 01:18:00 +080043
wuchimedesa1bf2782025-03-27 15:08:54 +080044 <dependency>
45 <groupId>com.mysql</groupId>
46 <artifactId>mysql-connector-j</artifactId>
47 <scope>runtime</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-starter-test</artifactId>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.projectlombok</groupId>
56 <artifactId>lombok</artifactId>
57 <scope>provided</scope>
58 </dependency>
牧之fe0cbd92025-04-01 17:56:17 +080059 <dependency>
60 <groupId>com.dampcake</groupId>
61 <artifactId>bencode</artifactId>
62 <version>1.4</version>
63 </dependency>
wuchimedes079c1632025-04-02 22:01:20 +080064 <dependency>
65 <groupId>io.jsonwebtoken</groupId>
66 <artifactId>jjwt-api</artifactId>
67 <version>0.12.6</version>
68 </dependency>
69 <dependency>
70 <groupId>io.jsonwebtoken</groupId>
71 <artifactId>jjwt-impl</artifactId>
72 <version>0.12.6</version>
73 <scope>runtime</scope>
74 </dependency>
75 <dependency>
76 <groupId>io.jsonwebtoken</groupId>
77 <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
78 <version>0.12.6</version>
79 <scope>runtime</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework.boot</groupId>
83 <artifactId>spring-boot-starter-security</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>javax.servlet</groupId>
87 <artifactId>javax.servlet-api</artifactId>
88 <version>4.0.1</version>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>junit</groupId>
93 <artifactId>junit</artifactId>
94 <scope>test</scope>
95 </dependency>
wuchimedes18addec2025-04-03 17:59:02 +080096 <dependency>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-data-redis</artifactId>
99 </dependency>
wuchimedes5280aa72025-04-03 20:49:34 +0800100 <dependency>
101 <groupId>org.springframework.boot</groupId>
102 <artifactId>spring-boot-starter-mail</artifactId>
103 </dependency>
wuchimedesa1bf2782025-03-27 15:08:54 +0800104 </dependencies>
105
106 <build>
107 <plugins>
108 <plugin>
109 <groupId>org.springframework.boot</groupId>
110 <artifactId>spring-boot-maven-plugin</artifactId>
111 </plugin>
112 </plugins>
113 </build>
114
115</project>