<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.whyckj</groupId>
|
<artifactId>passwordReset</artifactId>
|
<version>1.0</version>
|
<packaging>jar</packaging>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<!--<version>1.5.20.RELEASE</version>-->
|
<version>2.1.12.RELEASE</version>
|
<!--<version>2.2.0.RELEASE</version>-->
|
<relativePath/>
|
</parent>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>6.0.6</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
<version>2.8.5</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
</dependency>
|
<!--<dependency>-->
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
<!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
|
<!--</dependency>-->
|
<!--mybatis 及mybatis-plus-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.1.2</version>
|
</dependency>
|
<!--<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.7.0</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.7.0</version>
|
</dependency>-->
|
<!--knife4j-->
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>2.0.2</version>
|
<!--<version>2.0.6</version>-->
|
<!--<exclusions>
|
<exclusion>
|
<groupId>org.springframework.plugin</groupId>
|
<artifactId>spring-plugin-core</artifactId>
|
</exclusion>
|
</exclusions>-->
|
</dependency>
|
<!--<dependency>
|
<groupId>org.springframework.plugin</groupId>
|
<artifactId>spring-plugin-core</artifactId>
|
<!–<version>2.0.0.RELEASE</version>–>
|
</dependency>-->
|
<!--连接池-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-extension</artifactId>
|
<version>3.1.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.10</version>
|
</dependency>
|
<!--<dependency>
|
<groupId>org.springframework.plugin</groupId>
|
<artifactId>spring-plugin-core</artifactId>
|
<version>2.0.0.RELEASE</version>
|
</dependency>
|
<!– 避免版本冲突 –>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>29.0-jre</version>
|
</dependency>-->
|
<!--pageHelper分页-->
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>1.2.5</version>
|
</dependency>
|
<!--lombok插件-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>javassist</groupId>
|
<artifactId>javassist</artifactId>
|
<version>3.11.0.GA</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<!--必须是这个1.4.2版本!!!否则打成jar无法访问页面!!-->
|
<version>1.4.2.RELEASE</version>
|
<configuration>
|
<!-- 工程主入口-->
|
<mainClass>com.whyc.Application</mainClass>
|
</configuration>
|
</plugin>
|
</plugins>
|
<!-- 指定资源文件的位置,否则maven打包的时候不会把文件打包进去,导致thymeleaf无法解析 -->
|
<resources>
|
<resource>
|
<directory>src/main/resources</directory>
|
</resource>
|
<resource>
|
<directory>src/main/webapp</directory>
|
<targetPath>META-INF/resources</targetPath>
|
<includes>
|
<include>**/**</include>
|
</includes>
|
</resource>
|
|
</resources>
|
</build>
|
|
</project>
|