You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.8 KiB
80 lines
2.8 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>org.school</groupId> |
|
<artifactId>demo1</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
<version>5.3.22</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<version>5.3.22</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-aop</artifactId> |
|
<version>5.3.22</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjrt</artifactId> |
|
<version>1.9.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjweaver</artifactId> |
|
<version>1.9.6</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mybatis</groupId> |
|
<artifactId>mybatis</artifactId> |
|
<version>3.5.10</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<version>8.0.30</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.24</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.13.2</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>wiki.xsx</groupId> |
|
<artifactId>mybatis-sql-spring-boot-starter</artifactId> |
|
<version>1.0.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>2.2.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>druid-spring-boot-starter</artifactId> |
|
<version>1.2.12</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<properties> |
|
<maven.compiler.source>11</maven.compiler.source> |
|
<maven.compiler.target>11</maven.compiler.target> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
</project> |