|
|
<?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>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>2.2.4.RELEASE</version>
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
</parent>
|
|
|
<groupId>com.tnkj</groupId>
|
|
|
<artifactId>wrgk</artifactId>
|
|
|
<version>-4.0</version>
|
|
|
<name>wrgk</name>
|
|
|
<description>Wrgk project for Spring Boot</description>
|
|
|
|
|
|
<properties>
|
|
|
<java.version>1.8</java.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
|
<druid.version>1.2.6</druid.version>
|
|
|
<bitwalker.version>1.21</bitwalker.version>
|
|
|
<swagger.version>3.0.0</swagger.version>
|
|
|
<kaptcha.version>2.3.2</kaptcha.version>
|
|
|
<mybatis-spring-boot.version>2.1.4</mybatis-spring-boot.version>
|
|
|
<pagehelper.boot.version>1.3.1</pagehelper.boot.version>
|
|
|
<fastjson.version>1.2.76</fastjson.version>
|
|
|
<oshi.version>5.7.4</oshi.version>
|
|
|
<jna.version>5.8.0</jna.version>
|
|
|
<commons.io.version>2.10.0</commons.io.version>
|
|
|
<commons.fileupload.version>1.4</commons.fileupload.version>
|
|
|
<commons.collections.version>3.2.2</commons.collections.version>
|
|
|
<poi.version>4.1.2</poi.version>
|
|
|
<velocity.version>1.7</velocity.version>
|
|
|
<jwt.version>0.9.1</jwt.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-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>1.2.62</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.1.2</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
<version>3.9</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.18.6</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>FFmpeg</groupId>
|
|
|
<artifactId>FFmpeg</artifactId>
|
|
|
<version>1.0</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/hk/FFmpeg-1.0.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>examples</groupId>
|
|
|
<artifactId>examples</artifactId>
|
|
|
<version>1.0</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/hk/examples.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>jna</groupId>
|
|
|
<artifactId>jna</artifactId>
|
|
|
<version>1.0</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/hk/jna.jar</systemPath>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
<version>1.9</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/dw/commons-codec-1.9.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-logging</groupId>
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
<version>1.2</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/dw/commons-logging-1.2.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>httpclient</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>4.5.3</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/dw/httpclient-4.5.3.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>httpcore</groupId>
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
<version>4.4.6</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${basedir}/src/main/resources/lib/dw/httpcore-4.4.6.jar</systemPath>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- SpringBoot的依赖配置-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
<version>2.2.13.RELEASE</version>
|
|
|
<type>pom</type>
|
|
|
<scope>import</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- redis 缓存操作 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- spring-boot-devtools -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 阿里数据库连接池 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
<version>${druid.version}</version>
|
|
|
</dependency>
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
|
<dependency>
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
<version>${bitwalker.version}</version>
|
|
|
</dependency>
|
|
|
<!-- SpringBoot集成mybatis框架 -->
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
<version>${mybatis-spring-boot.version}</version>
|
|
|
</dependency>
|
|
|
<!--rabbitmq-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<!-- mybatis-plus支持 -->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
<version>3.1.2</version>
|
|
|
</dependency>
|
|
|
<!-- Mysql驱动包 -->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
</dependency>
|
|
|
<!--postSql驱动包 -->
|
|
|
<dependency>
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
|
<!-- pagehelper 分页插件 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
<version>${pagehelper.boot.version}</version>
|
|
|
</dependency>
|
|
|
<!-- 获取系统信息 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
<version>${oshi.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
<artifactId>jna</artifactId>
|
|
|
<version>${jna.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
<artifactId>jna-platform</artifactId>
|
|
|
<version>${jna.version}</version>
|
|
|
</dependency>
|
|
|
<!-- Swagger3依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
|
<version>${swagger.version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>io.swagger</groupId>
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
|
|
<dependency>
|
|
|
<groupId>io.swagger</groupId>
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
<version>1.6.2</version>
|
|
|
</dependency>
|
|
|
<!-- io常用工具类 -->
|
|
|
<dependency>
|
|
|
<groupId>commons-io</groupId>
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
<version>${commons.io.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 文件上传工具类 -->
|
|
|
<dependency>
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
<version>${commons.fileupload.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- excel工具 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<version>${poi.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- pool 对象池 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
</dependency>
|
|
|
<!-- velocity代码生成使用模板 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
<artifactId>velocity</artifactId>
|
|
|
<version>${velocity.version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>commons-collections</groupId>
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- collections工具类 -->
|
|
|
<dependency>
|
|
|
<groupId>commons-collections</groupId>
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
<version>${commons.collections.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>${fastjson.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Token生成与解析-->
|
|
|
<dependency>
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
<version>${jwt.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 验证码 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.penggle</groupId>
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
<version>${kaptcha.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- spring security 安全认证 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 自定义验证注解 -->
|
|
|
<dependency>
|
|
|
<groupId>javax.validation</groupId>
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--常用工具类 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- JSON工具类 -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- SpringBoot 拦截器 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- 解决mybatisplus和mybatis冲突-->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
|
<version>3.4.2</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 定时任务 -->
|
|
|
<dependency>
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
<artifactId>quartz</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.mchange</groupId>
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
|
|
|
<dependency>
|
|
|
<groupId>javax.validation</groupId>
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
<version>2.0.1.Final</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
<version>5.1.1.Final</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>javax.el</groupId>
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
<version>3.0.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>javax.json.bind</groupId>
|
|
|
<artifactId>javax.json.bind-api</artifactId>
|
|
|
<version>1.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- MQTT -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
<artifactId>spring-integration-core</artifactId>
|
|
|
<version>5.2.8.RELEASE</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-integration</artifactId>
|
|
|
<version>2.3.0.RELEASE</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
<artifactId>spring-integration-stream</artifactId>
|
|
|
<version>5.2.8.RELEASE</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
|
<version>5.2.8.RELEASE</version>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
<id>public</id>
|
|
|
<name>aliyun nexus</name>
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
<releases>
|
|
|
<enabled>true</enabled>
|
|
|
</releases>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
</configuration>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<goals>
|
|
|
<goal>repackage</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
<pluginRepositories>
|
|
|
<pluginRepository>
|
|
|
<id>public</id>
|
|
|
<name>aliyun nexus</name>
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
<releases>
|
|
|
<enabled>true</enabled>
|
|
|
</releases>
|
|
|
<snapshots>
|
|
|
<enabled>false</enabled>
|
|
|
</snapshots>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
|
|
|
</project> |