|
@@ -1,187 +1,193 @@
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?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"
|
|
<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.xtd</groupId>
|
|
|
|
- <artifactId>xtd_coms</artifactId>
|
|
|
|
- <version>2.2.0</version>
|
|
|
|
- <packaging>jar</packaging>
|
|
|
|
-
|
|
|
|
- <name>xtd-coms</name>
|
|
|
|
- <url>http://www.xtd-coms.vip</url>
|
|
|
|
- <description>信通达综合服务平台</description>
|
|
|
|
-
|
|
|
|
- <parent>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
- <version>2.1.1.RELEASE</version>
|
|
|
|
- <relativePath />
|
|
|
|
- </parent>
|
|
|
|
-
|
|
|
|
- <properties>
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
- <java.version>1.8</java.version>
|
|
|
|
- <mybatis.spring.boot.starter.version>1.3.2</mybatis.spring.boot.starter.version>
|
|
|
|
- <pagehelper.spring.boot.starter.version>1.2.5</pagehelper.spring.boot.starter.version>
|
|
|
|
- <fastjson.version>1.2.47</fastjson.version>
|
|
|
|
- <druid.version>1.1.14</druid.version>
|
|
|
|
- <commons.io.version>2.5</commons.io.version>
|
|
|
|
- <commons.fileupload.version>1.3.3</commons.fileupload.version>
|
|
|
|
- <bitwalker.version>1.19</bitwalker.version>
|
|
|
|
- <jwt.version>0.9.0</jwt.version>
|
|
|
|
- <swagger.version>2.9.2</swagger.version>
|
|
|
|
- <poi.version>3.17</poi.version>
|
|
|
|
- <oshi.version>3.9.1</oshi.version>
|
|
|
|
- <velocity.version>1.7</velocity.version>
|
|
|
|
- </properties>
|
|
|
|
-
|
|
|
|
- <dependencies>
|
|
|
|
-
|
|
|
|
- <!-- SpringBoot 核心包 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- SpringBoot 测试 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- SpringBoot 拦截器 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- SpringBoot Web容器 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- spring-boot-devtools -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
- <optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- spring security 安全认证 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- redis 缓存操作 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- pool 对象池 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-pool2</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- Mysql驱动包 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
- <scope>runtime</scope>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- SpringBoot集成mybatis框架 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
- <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
- <version>${mybatis.spring.boot.starter.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- pagehelper 分页插件 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.github.pagehelper</groupId>
|
|
|
|
- <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
- <version>${pagehelper.spring.boot.starter.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!--阿里数据库连接池 -->
|
|
|
|
- <dependency>
|
|
|
|
|
|
+ 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.ruoyi</groupId>
|
|
|
|
+ <artifactId>ruoyi</artifactId>
|
|
|
|
+ <version>1.0</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <name>ruoyi</name>
|
|
|
|
+ <url>http://www.ruoyi.vip</url>
|
|
|
|
+ <description>若依管理系统</description>
|
|
|
|
+
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
+ <version>2.1.1.RELEASE</version>
|
|
|
|
+ <relativePath/>
|
|
|
|
+ </parent>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
+ <java.version>1.8</java.version>
|
|
|
|
+ <mybatis.spring.boot.starter.version>1.3.2</mybatis.spring.boot.starter.version>
|
|
|
|
+ <pagehelper.spring.boot.starter.version>1.2.5</pagehelper.spring.boot.starter.version>
|
|
|
|
+ <fastjson.version>1.2.47</fastjson.version>
|
|
|
|
+ <druid.version>1.1.14</druid.version>
|
|
|
|
+ <commons.io.version>2.5</commons.io.version>
|
|
|
|
+ <commons.fileupload.version>1.3.3</commons.fileupload.version>
|
|
|
|
+ <bitwalker.version>1.19</bitwalker.version>
|
|
|
|
+ <jwt.version>0.9.0</jwt.version>
|
|
|
|
+ <swagger.version>2.9.2</swagger.version>
|
|
|
|
+ <oshi.version>3.9.1</oshi.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+
|
|
|
|
+ <!-- SpringBoot 核心包 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter</artifactId>
|
|
|
|
+ <!--
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ -->
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringBoot 测试 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringBoot 拦截器 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringBoot Web容器 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- spring-boot-devtools -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
+ <optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- spring security 安全认证 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- redis 缓存操作 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- pool 对象池 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- Mysql驱动包 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringBoot集成mybatis框架 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
+ <version>${mybatis.spring.boot.starter.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- pagehelper 分页插件 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
+ <version>${pagehelper.spring.boot.starter.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--阿里数据库连接池 -->
|
|
|
|
+ <dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
- <!--常用工具类 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-lang3</artifactId>
|
|
|
|
- </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>
|
|
|
|
-
|
|
|
|
- <!-- 解析客户端操作系统、浏览器等 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>eu.bitwalker</groupId>
|
|
|
|
- <artifactId>UserAgentUtils</artifactId>
|
|
|
|
- <version>${bitwalker.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- 阿里JSON解析器 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
- <version>${fastjson.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!--Spring框架基本的核心工具-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
- <artifactId>spring-context-support</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
|
|
+ <!--常用工具类 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ </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>
|
|
|
|
+
|
|
|
|
+ <!-- 解析客户端操作系统、浏览器等 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>eu.bitwalker</groupId>
|
|
|
|
+ <artifactId>UserAgentUtils</artifactId>
|
|
|
|
+ <version>${bitwalker.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- 阿里JSON解析器 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--Spring框架基本的核心工具-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-context-support</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
|
|
<!--Token生成与解析-->
|
|
<!--Token生成与解析-->
|
|
- <dependency>
|
|
|
|
- <groupId>io.jsonwebtoken</groupId>
|
|
|
|
- <artifactId>jjwt</artifactId>
|
|
|
|
- <version>${jwt.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- swagger2-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
- <artifactId>springfox-swagger2</artifactId>
|
|
|
|
- <version>${swagger.version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
|
- <artifactId>swagger-annotations</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
|
- <artifactId>swagger-models</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
|
|
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
|
+ <version>${jwt.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- swagger2-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
|
+ <version>${swagger.version}</version>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
@@ -194,169 +200,121 @@
|
|
<version>1.5.21</version>
|
|
<version>1.5.21</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
- <!-- swagger2-UI-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
- <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
- <version>${swagger.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
|
|
+ <!-- swagger2-UI-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
+ <version>${swagger.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>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.java.dev.jna</groupId>
|
|
|
|
- <artifactId>jna-platform</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- excel工具 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi</artifactId>
|
|
|
|
- <version>${poi.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi-ooxml</artifactId>
|
|
|
|
- <version>${poi.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
- <version>${poi.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!--velocity代码生成使用模板 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
|
- <artifactId>velocity</artifactId>
|
|
|
|
- <version>${velocity.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!-- 定时任务 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.quartz-scheduler</groupId>
|
|
|
|
- <artifactId>quartz</artifactId>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>com.mchange</groupId>
|
|
|
|
- <artifactId>c3p0</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <!--**********************************工作流开始***********************************-->
|
|
|
|
- <!--工作流-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.activiti</groupId>
|
|
|
|
- <artifactId>activiti-spring-boot-starter-basic</artifactId>
|
|
|
|
- <version>6.0.0</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!--模型设计-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.activiti</groupId>
|
|
|
|
- <artifactId>activiti-json-converter</artifactId>
|
|
|
|
- <version>6.0.0</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.activiti</groupId>
|
|
|
|
- <artifactId>activiti-bpmn-model</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- JSON工具类 -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
|
- <version>2.9.5</version>
|
|
|
|
- </dependency>
|
|
|
|
- <!-- xml解析依赖-->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
- <artifactId>batik-codec</artifactId>
|
|
|
|
- <version>1.7</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
- <artifactId>batik-css</artifactId>
|
|
|
|
- <version> 1.7</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
- <artifactId>batik-svg-dom</artifactId>
|
|
|
|
- <version>1.7</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
- <artifactId>batik-svggen</artifactId>
|
|
|
|
- <version>1.7</version>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.activiti6</groupId>
|
|
|
|
- <artifactId>activiti6-demo</artifactId>
|
|
|
|
- <version>1.0.0</version>
|
|
|
|
- <scope>compile</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <!--**********************************工作流结束***********************************-->
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.hikvision.ga</groupId>
|
|
|
|
- <artifactId>artemis-http-client</artifactId>
|
|
|
|
- <version>1.1.2</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
|
- <version>1.16.18</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>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.java.dev.jna</groupId>
|
|
|
|
+ <artifactId>jna-platform</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--**********************************工作流开始***********************************-->
|
|
|
|
+ <!--工作流-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
+ <artifactId>activiti-spring-boot-starter-basic</artifactId>
|
|
|
|
+ <version>6.0.0</version>
|
|
|
|
+<!-- <exclusions>-->
|
|
|
|
+<!-- <exclusion>-->
|
|
|
|
+<!-- <artifactId>activiti-image-generator</artifactId>-->
|
|
|
|
+<!-- <groupId>org.activiti</groupId>-->
|
|
|
|
+<!-- </exclusion>-->
|
|
|
|
+<!-- </exclusions>-->
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--模型设计-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
+ <artifactId>activiti-json-converter</artifactId>
|
|
|
|
+ <version>6.0.0</version>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
+ <artifactId>activiti-bpmn-model</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- JSON工具类 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
|
+ <version>2.9.5</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- xml解析依赖-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
+ <artifactId>batik-codec</artifactId>
|
|
|
|
+ <version>1.7</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
+ <artifactId>batik-css</artifactId>
|
|
|
|
+ <version> 1.7</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
+ <artifactId>batik-svg-dom</artifactId>
|
|
|
|
+ <version>1.7</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
+ <artifactId>batik-svggen</artifactId>
|
|
|
|
+ <version>1.7</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--**********************************工作流结束***********************************-->
|
|
|
|
+
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
- <build>
|
|
|
|
- <finalName>${project.artifactId}</finalName>
|
|
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
- <configuration>
|
|
|
|
- <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
|
- </configuration>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
- </build>
|
|
|
|
-
|
|
|
|
- <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>
|
|
|
|
-
|
|
|
|
- <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>
|
|
|
|
|
|
+ <build>
|
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+ <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>
|
|
|
|
+
|
|
|
|
+ <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>
|
|
</project>
|