93 lines
3.0 KiB
XML
93 lines
3.0 KiB
XML
<?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>
|
|
<parent>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-parent</artifactId>
|
|
<version>0.8.8</version>
|
|
</parent>
|
|
|
|
<artifactId>springboot-web</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- aspect -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- MySql驱动 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.30</version>
|
|
</dependency>
|
|
|
|
<!-- mybatis-plus -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-util</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-database</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-poi</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-login</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-message</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tiesheng.springboot-parent</groupId>
|
|
<artifactId>springboot-encrypt</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|