blob: 39255c666163dc4d23575c1a12792b68482f088c [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
43 <dependency>
44 <groupId>com.mysql</groupId>
45 <artifactId>mysql-connector-j</artifactId>
46 <scope>runtime</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-starter-test</artifactId>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.projectlombok</groupId>
55 <artifactId>lombok</artifactId>
56 <scope>provided</scope>
57 </dependency>
牧之fe0cbd92025-04-01 17:56:17 +080058 <dependency>
59 <groupId>com.dampcake</groupId>
60 <artifactId>bencode</artifactId>
61 <version>1.4</version>
62 </dependency>
wuchimedes079c1632025-04-02 22:01:20 +080063 <dependency>
64 <groupId>io.jsonwebtoken</groupId>
65 <artifactId>jjwt-api</artifactId>
66 <version>0.12.6</version>
67 </dependency>
68 <dependency>
69 <groupId>io.jsonwebtoken</groupId>
70 <artifactId>jjwt-impl</artifactId>
71 <version>0.12.6</version>
72 <scope>runtime</scope>
73 </dependency>
74 <dependency>
75 <groupId>io.jsonwebtoken</groupId>
76 <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
77 <version>0.12.6</version>
78 <scope>runtime</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.springframework.boot</groupId>
82 <artifactId>spring-boot-starter-security</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>javax.servlet</groupId>
86 <artifactId>javax.servlet-api</artifactId>
87 <version>4.0.1</version>
88 <scope>provided</scope>
89 </dependency>
90 <dependency>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <scope>test</scope>
94 </dependency>
wuchimedes18addec2025-04-03 17:59:02 +080095 <dependency>
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-data-redis</artifactId>
98 </dependency>
wuchimedes5280aa72025-04-03 20:49:34 +080099 <dependency>
100 <groupId>org.springframework.boot</groupId>
101 <artifactId>spring-boot-starter-mail</artifactId>
102 </dependency>
22301071fa22ac62025-05-24 21:38:17 +0800103 <dependency>
104 <groupId>org.springframework.security</groupId>
105 <artifactId>spring-security-test</artifactId>
106 <scope>test</scope>
107 </dependency>
wuchimedesa1bf2782025-03-27 15:08:54 +0800108 </dependencies>
109
110 <build>
111 <plugins>
112 <plugin>
113 <groupId>org.springframework.boot</groupId>
114 <artifactId>spring-boot-maven-plugin</artifactId>
115 </plugin>
116 </plugins>
117 </build>
118
119</project>