<?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>com.ycl</groupId>
|
<artifactId>jxkg</artifactId>
|
<version>3.9.0</version>
|
<packaging>jar</packaging>
|
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
<java.version>1.8</java.version>
|
<mysql.version>8.0.17</mysql.version>
|
<spring.boot.version>2.1.6.RELEASE</spring.boot.version>
|
<mybatisplus.version>3.5.4</mybatisplus.version>
|
<lombok.version>1.18.24</lombok.version>
|
<knife.version>3.0.3</knife.version>
|
<easyexcel.version>3.3.2</easyexcel.version>
|
</properties>
|
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.6.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
|
|
|
<repositories>
|
<repository>
|
<id>aliyun-releases</id>
|
<url>https://maven.aliyun.com/repository/public</url>
|
</repository>
|
</repositories>
|
|
|
<dependencies>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>2.0.43</version>
|
</dependency>
|
|
<!-- fastjson -->
|
<dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2</artifactId>
|
<version>2.0.41</version>
|
</dependency>
|
|
|
<!-- swagger -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
|
<!-- lombok -->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
<optional>true</optional>
|
</dependency>
|
|
<!-- MybatisPlus -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatisplus.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-validation</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<version>${spring.boot.version}</version>
|
<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-undertow</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>1.2.12</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>jsqlparser</artifactId>
|
<groupId>com.github.jsqlparser</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
<version>2.6.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.9</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.9</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.qiniu</groupId>
|
<artifactId>qiniu-java-sdk</artifactId>
|
<version>7.2.25</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<version>${spring.boot.version}</version>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<!-- hot debug -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<version>${spring.boot.version}</version>
|
<scope>provided</scope>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>${easyexcel.version}</version>
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring.boot.version}</version>
|
<configuration>
|
<fork>true</fork>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<skipTests>true</skipTests>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|