<?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.1.3.RELEASE</version>
|
<relativePath/>
|
</parent>
|
<groupId>com.byrk</groupId>
|
<artifactId>master</artifactId>
|
<version>1.0.0</version>
|
<packaging>war</packaging>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<cool.version>2.3.0</cool.version>
|
<mysql-driver.version>5.1.47</mysql-driver.version>
|
<mybatis-plus.version>2.3.2</mybatis-plus.version>
|
<fastjson.version>1.2.58</fastjson.version>
|
<springfox.version>2.7.0</springfox.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-mail</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cn.cool</groupId>
|
<artifactId>framework</artifactId>
|
<version>${cool.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql-driver.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>mssql-jdbc</artifactId>
|
<version>8.2.2.jre8</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${springfox.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${springfox.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
<version>1.8.9</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>3.3.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>javase</artifactId>
|
<version>3.3.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.2.6</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.16.22</version>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
<version>2.8.3</version>
|
</dependency>
|
<!-- okHttp3 -->
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>3.10.0</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>wms</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|