blob: 5c3c87788bd7d6814343e15709ab7c3e53c2c4fc [file] [log] [blame]
22301102d6280d32025-04-08 17:02:33 +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.intelligentclass</groupId>
12 <artifactId>Backend</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Backend</name>
15 <description>Backend</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</artifactId>
36 </dependency>
22301102e0c7c6e2025-05-17 11:08:45 +080037 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-jdbc</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>com.mysql</groupId>
43 <artifactId>mysql-connector-j</artifactId>
44 <scope>runtime</scope>
45 </dependency>
22301102d6280d32025-04-08 17:02:33 +080046 <dependency>
2230110210198562025-05-17 16:27:12 +080047 <groupId>io.jsonwebtoken</groupId>
48 <artifactId>jjwt-api</artifactId>
49 <version>0.11.5</version>
50 </dependency>
51 <dependency>
52 <groupId>io.jsonwebtoken</groupId>
53 <artifactId>jjwt-impl</artifactId>
54 <version>0.11.5</version>
55 <scope>runtime</scope>
56 </dependency>
57 <dependency>
58 <groupId>io.jsonwebtoken</groupId>
59 <artifactId>jjwt-jackson</artifactId>
60 <version>0.11.5</version>
61 <scope>runtime</scope>
62 </dependency>
63 <dependency>
22301102d6280d32025-04-08 17:02:33 +080064 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-test</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <version>4.13.2</version>
72 <scope>test</scope>
73 </dependency>
22301102e0c7c6e2025-05-17 11:08:45 +080074 <dependency>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-data-jpa</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-web</artifactId>
81 </dependency>
22301102d6280d32025-04-08 17:02:33 +080082 </dependencies>
83
84
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.springframework.boot</groupId>
90 <artifactId>spring-boot-maven-plugin</artifactId>
91 </plugin>
92 </plugins>
93 </build>
94
95</project>