blob: ea2bf366e8f5b9df3a01563c52a25a7d2908f6f8 [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>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-test</artifactId>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <version>4.13.2</version>
55 <scope>test</scope>
56 </dependency>
22301102e0c7c6e2025-05-17 11:08:45 +080057 <dependency>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-data-jpa</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.springframework.boot</groupId>
63 <artifactId>spring-boot-starter-web</artifactId>
64 </dependency>
22301102d6280d32025-04-08 17:02:33 +080065 </dependencies>
66
67
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-maven-plugin</artifactId>
74 </plugin>
75 </plugins>
76 </build>
77
78</project>