blob: ae8b1ba991da915bf0bdfb13bc36b088a5fae2c8 [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>
Edwardsamaxlcba512d2025-06-09 21:17:29 +080057 <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
58 <dependency>
59 <groupId>org.springframework</groupId>
60 <artifactId>spring-test</artifactId>
61 <version>6.2.7</version>
62 <scope>test</scope>
63 </dependency>
64
2230110210198562025-05-17 16:27:12 +080065 <dependency>
66 <groupId>io.jsonwebtoken</groupId>
67 <artifactId>jjwt-jackson</artifactId>
68 <version>0.11.5</version>
69 <scope>runtime</scope>
70 </dependency>
71 <dependency>
22301102d6280d32025-04-08 17:02:33 +080072 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-starter-test</artifactId>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 <version>4.13.2</version>
80 <scope>test</scope>
81 </dependency>
22301102e0c7c6e2025-05-17 11:08:45 +080082 <dependency>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-starter-data-jpa</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-web</artifactId>
89 </dependency>
Edwardsamaxlcba512d2025-06-09 21:17:29 +080090 <dependency>
91 <groupId>org.springframework</groupId>
92 <artifactId>spring-test</artifactId>
93 </dependency>
22301102d6280d32025-04-08 17:02:33 +080094 </dependencies>
95
96
97
98 <build>
99 <plugins>
100 <plugin>
101 <groupId>org.springframework.boot</groupId>
102 <artifactId>spring-boot-maven-plugin</artifactId>
103 </plugin>
104 </plugins>
105 </build>
106
107</project>