<?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>
|
|
<parent>
|
|
<groupId>com.inspect</groupId>
|
|
<artifactId>inspect-main</artifactId>
|
|
<version>3.4.0</version>
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- <relativePath>../pom.xml</relativePath>-->
|
|
</parent>
|
|
<artifactId>inspect-main-task</artifactId>
|
|
<version>3.4.0</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.inspect</groupId>
|
|
<artifactId>inspect-base-datasource</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.inspect</groupId>
|
|
<artifactId>inspect-common-aspect</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.inspect</groupId>
|
|
<artifactId>inspect-common-log</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.inspect</groupId>
|
|
<artifactId>inspect-base-swagger</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>1.2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.belerweb</groupId>
|
|
<artifactId>pinyin4j</artifactId>
|
|
<version>2.5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
<version>1.9.13</version>
|
|
</dependency>
|
|
|
|
<!-- 图片压缩库 -->
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.19</version>
|
|
</dependency>
|
|
|
|
<!-- POI 流式处理 -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>5.2.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.redisson</groupId>
|
|
<artifactId>redisson</artifactId>
|
|
<version>3.23.5</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|