You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
238 lines
8.3 KiB
XML
238 lines
8.3 KiB
XML
|
10 months ago
|
<?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.7.11</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>com.example</groupId>
|
||
|
|
<artifactId>PrecisePath</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<name>PrecisePath</name>
|
||
|
|
<description>PrecisePath</description>
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- lombok -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- 外置依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
<version>4.0.1</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
|
<version>3.5.3.1</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.baomidou/kaptcha-spring-boot-starter -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>kaptcha-spring-boot-starter</artifactId>
|
||
|
|
<version>1.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 数据库链接包-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
||
|
|
<version>3.5.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 复合主键-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.jeffreyning</groupId>
|
||
|
|
<artifactId>mybatisplus-plus</artifactId>
|
||
|
|
<version>1.7.3-RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.microsoft</groupId>
|
||
|
|
<artifactId>sqljdbc4</artifactId>
|
||
|
|
<version>3.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!--JWT鉴权-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.auth0</groupId>
|
||
|
|
<artifactId>java-jwt</artifactId>
|
||
|
|
<version>4.3.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 密码加密-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.enc</groupId>
|
||
|
|
<artifactId>EndPassJava</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- DateUtil-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--spring-session-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.session</groupId>
|
||
|
|
<artifactId>spring-session-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.pagehelper</groupId>
|
||
|
|
<artifactId>pagehelper</artifactId>
|
||
|
|
<version>5.3.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.session</groupId>
|
||
|
|
<artifactId>spring-session-jdbc</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>2.0.25</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-codec</groupId>
|
||
|
|
<artifactId>commons-codec</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.dm</groupId>
|
||
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
||
|
|
<version>1.8.0</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.persistence</groupId>
|
||
|
|
<artifactId>javax.persistence-api</artifactId>
|
||
|
|
<version>2.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
||
|
|
<artifactId>ojdbc8</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.oracle.ojdbc</groupId>
|
||
|
|
<artifactId>orai18n</artifactId>
|
||
|
|
<version>19.3.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- easyexcel https://easyexcel.opensource.alibaba.com/docs/current/ -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel</artifactId>
|
||
|
|
<version>3.3.4</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- pagehelper https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/zh/HowToUse.md -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.pagehelper</groupId>
|
||
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
|
<version>2.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.zxing</groupId>
|
||
|
|
<artifactId>core</artifactId>
|
||
|
|
<version>3.5.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-all</artifactId>
|
||
|
|
<version>5.8.28</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.belerweb</groupId>
|
||
|
|
<artifactId>pinyin4j</artifactId>
|
||
|
|
<version>2.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.testng</groupId>
|
||
|
|
<artifactId>testng</artifactId>
|
||
|
|
<version>RELEASE</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 动态数据源 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
||
|
|
<version>4.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<finalName>PrecisePath</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<version>2.22.2</version>
|
||
|
|
<configuration>
|
||
|
|
<testFailureIgnore>true</testFailureIgnore>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/java</directory>
|
||
|
|
<includes>
|
||
|
|
<include>**/*.xml</include>
|
||
|
|
</includes>
|
||
|
|
<filtering>false</filtering>
|
||
|
|
</resource>
|
||
|
|
<!--打包时去除配置文件-->
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/resources</directory>
|
||
|
|
<excludes>
|
||
|
|
<exclude>*.properties</exclude>
|
||
|
|
</excludes>
|
||
|
|
<includes>
|
||
|
|
<include>logback-spring.xml</include>
|
||
|
|
<include>static/**</include>
|
||
|
|
<include>excel/**</include>
|
||
|
|
<include>META-INF/spring.factories</include>
|
||
|
|
</includes>
|
||
|
|
</resource>
|
||
|
|
</resources>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|