|
@@ -0,0 +1,42 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
5
|
+ <parent>
|
|
6
|
+ <artifactId>spring_demo</artifactId>
|
|
7
|
+ <groupId>org.example</groupId>
|
|
8
|
+ <version>1.0-SNAPSHOT</version>
|
|
9
|
+ </parent>
|
|
10
|
+ <modelVersion>4.0.0</modelVersion>
|
|
11
|
+
|
|
12
|
+ <artifactId>mybatis_train</artifactId>
|
|
13
|
+
|
|
14
|
+ <properties>
|
|
15
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
16
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
17
|
+ </properties>
|
|
18
|
+ <dependencies>
|
|
19
|
+ <dependency>
|
|
20
|
+ <groupId>mysql</groupId>
|
|
21
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
22
|
+ <version>8.0.17</version>
|
|
23
|
+ </dependency>
|
|
24
|
+ <dependency>
|
|
25
|
+ <groupId>org.mybatis</groupId>
|
|
26
|
+ <artifactId>mybatis</artifactId>
|
|
27
|
+ <version>3.5.9</version>
|
|
28
|
+ </dependency>
|
|
29
|
+ <dependency>
|
|
30
|
+ <groupId>junit</groupId>
|
|
31
|
+ <artifactId>junit</artifactId>
|
|
32
|
+ <version>4.13.2</version>
|
|
33
|
+ <scope>test</scope>
|
|
34
|
+ </dependency>
|
|
35
|
+ <dependency>
|
|
36
|
+ <groupId>org.projectlombok</groupId>
|
|
37
|
+ <artifactId>lombok</artifactId>
|
|
38
|
+ <version>1.18.24</version>
|
|
39
|
+ </dependency>
|
|
40
|
+ </dependencies>
|
|
41
|
+
|
|
42
|
+</project>
|