175 lines
5.9 KiB
XML
175 lines
5.9 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>2.5.4</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>com.saye</groupId>
|
||
|
|
<artifactId>hrsmobile</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<name>hrsmobile</name>
|
||
|
|
<description>hrsmobile</description>
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
</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>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.aspectj</groupId>
|
||
|
|
<artifactId>aspectjweaver</artifactId>
|
||
|
|
<version>1.9.6</version> <!-- 使用最新的稳定版本 -->
|
||
|
|
</dependency>
|
||
|
|
<!--web模板引擎-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--标签补全-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>net.sourceforge.nekohtml</groupId>
|
||
|
|
<artifactId>nekohtml</artifactId>
|
||
|
|
<version>1.9.21</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>1.2.73</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- excel -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.poi</groupId>
|
||
|
|
<artifactId>poi</artifactId>
|
||
|
|
<version>3.14</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.poi</groupId>
|
||
|
|
<artifactId>poi-ooxml</artifactId>
|
||
|
|
<version>3.14</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 防xss -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jsoup</groupId>
|
||
|
|
<artifactId>jsoup</artifactId>
|
||
|
|
<version>1.13.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>dom4j</groupId>
|
||
|
|
<artifactId>dom4j</artifactId>
|
||
|
|
<version>1.6.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jaxen</groupId>
|
||
|
|
<artifactId>jaxen</artifactId>
|
||
|
|
<version>1.1.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>xml-apis</groupId>
|
||
|
|
<artifactId>xml-apis</artifactId>
|
||
|
|
<version>1.4.01</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<!--定时任务-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.wxpay</groupId>
|
||
|
|
<artifactId>wxpay-sdk</artifactId>
|
||
|
|
<version>0.0.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--hutool-->
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-all</artifactId>
|
||
|
|
<version>5.8.20</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.guava</groupId>
|
||
|
|
<artifactId>guava</artifactId>
|
||
|
|
<version>32.1.2-jre</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<!-- <fork>true</fork> -->
|
||
|
|
<excludes>
|
||
|
|
<exclude>
|
||
|
|
<groupId>org.project-lombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</exclude>
|
||
|
|
</excludes>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.mybatis.generator</groupId>
|
||
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
||
|
|
<version>1.3.5</version>
|
||
|
|
<configuration>
|
||
|
|
<!--配置文件的位置-->
|
||
|
|
<configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
|
||
|
|
<overwrite>true</overwrite>
|
||
|
|
<verbose>true</verbose>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|