You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
556 lines
20 KiB
556 lines
20 KiB
<?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>EmergencyService</groupId>
|
|
<artifactId>EmergencyService</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0</version>
|
|
<modules>
|
|
<module>zdxtEmergencyAuthService</module>
|
|
<module>zdxtEmergencyBootStart</module>
|
|
<module>zdxtEmergencyAppService</module>
|
|
<module>zdxtEmergencyLogService</module>
|
|
<!-- <module>zdxtEmergencyExcelService</module>-->
|
|
<module>zdxtEmergencyMessageService</module>
|
|
<module>zdxtLawEnforcementCodeService</module>
|
|
<module>zdxtEmergencyDictService</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.2.13.RELEASE</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>11</java.version>
|
|
<!-- <shiro.version>2.0.1</shiro.version>-->
|
|
<shiro.version>1.8.0</shiro.version>
|
|
<thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.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.70</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>
|
|
<lombok.version>1.16.18</lombok.version>
|
|
<velocity.version>1.7</velocity.version>
|
|
<kaptcha.version>2.3.2</kaptcha.version>
|
|
<swagger.version>2.9.2</swagger.version>
|
|
<poi.version>4.1.2</poi.version>
|
|
<oshi.version>3.9.1</oshi.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- SpringBoot 核心包 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot 测试 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-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>
|
|
|
|
<!-- SpringBoot集成thymeleaf模板 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
|
|
<!-- spring-boot-devtools -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.session</groupId>
|
|
<artifactId>spring-session-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.session</groupId>
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.session</groupId>
|
|
<artifactId>spring-session</artifactId>
|
|
<version>1.3.1.RELEASE</version>
|
|
</dependency>
|
|
<!-- Mysql驱动包 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.26</version>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot集成mybatis框架 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.mybatis.spring.boot</groupId>-->
|
|
<!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
|
|
<!-- <version>${mybatis.spring.boot.starter.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<!-- SpringBoot集成mybatis-plus框架 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>3.4.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
<version>3.4.2</version>
|
|
</dependency>
|
|
|
|
<!-- pagehelper 分页插件 -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>1.3.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis-spring</artifactId>
|
|
</exclusion>
|
|
<!-- 解决jsqlparser 依赖版本冲突-->
|
|
<exclusion>
|
|
<artifactId>jsqlparser</artifactId>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- pagehelper 依赖 -->
|
|
<dependency>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
<artifactId>jsqlparser</artifactId>
|
|
<version>4.0</version>
|
|
</dependency>
|
|
|
|
<!--阿里数据库连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</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>
|
|
|
|
<!-- Shiro核心框架 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.shiro</groupId>-->
|
|
<!-- <artifactId>shiro-core</artifactId>-->
|
|
<!-- <version>${shiro.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!--<!– Shiro使用Spring框架–>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.shiro</groupId>-->
|
|
<!-- <artifactId>shiro-spring</artifactId>-->
|
|
<!-- <version>${shiro.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!--<!– Shiro使用EhCache缓存框架 –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.shiro</groupId>-->
|
|
<!-- <artifactId>shiro-ehcache</artifactId>-->
|
|
<!-- <version>${shiro.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- Shiro和Cas整合-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.shiro</groupId>-->
|
|
<!-- <artifactId>shiro-cas</artifactId>-->
|
|
<!-- <version>2.0.1</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- thymeleaf模板引擎和shiro框架的整合 -->
|
|
<dependency>
|
|
<groupId>com.github.theborakompanioni</groupId>
|
|
<artifactId>thymeleaf-extras-shiro</artifactId>
|
|
<version>${thymeleaf.extras.shiro.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
<dependency>
|
|
<groupId>eu.bitwalker</groupId>
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
<version>${bitwalker.version}</version>
|
|
</dependency>
|
|
|
|
<!--Spring框架基本的核心工具-->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 定时任务 -->
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.mchange</groupId>
|
|
<artifactId>c3p0</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!--velocity代码生成使用模板 -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>${velocity.version}</version>
|
|
</dependency>
|
|
|
|
<!--验证码 -->
|
|
<dependency>
|
|
<groupId>com.github.penggle</groupId>
|
|
<artifactId>kaptcha</artifactId>
|
|
<version>${kaptcha.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<groupId>javax.servlet</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</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.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>1.5.21</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-models</artifactId>
|
|
<version>1.5.21</version>
|
|
</dependency>
|
|
|
|
<!-- swagger2-UI-->
|
|
<!--<dependency>-->
|
|
<!--<groupId>io.springfox</groupId>-->
|
|
<!--<artifactId>springfox-swagger-ui</artifactId>-->
|
|
<!--<version>${swagger.version}</version>-->
|
|
<!--</dependency>-->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
|
<version>1.9.6</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-ooxml</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>EmergencyBaseLib</groupId>
|
|
<artifactId>EmergencyCommon</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>EmergencyBaseLib</groupId>
|
|
<artifactId>EmergencyCommonmDatascope</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.13.1</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>EmergencyBaseLib</groupId>-->
|
|
<!-- <artifactId>EmergencyCommonEntity</artifactId>-->
|
|
<!-- <version>1.0.0</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- 分布式定时任务组件 -->
|
|
<!-- 分布式文件存储组件 -->
|
|
<dependency>
|
|
<groupId>EmergencyBaseLib</groupId>
|
|
<artifactId>EmergencyOss</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>EmergencyServiceApi</groupId>
|
|
<artifactId>emergencyAuthServiceApi</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>zdxtFlowComponent</groupId>-->
|
|
<!-- <artifactId>zdxtFlowComponent</artifactId>-->
|
|
<!-- <version>1.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>ZdxtComponent</groupId>-->
|
|
<!-- <artifactId>zdxtVisualizationComponent</artifactId>-->
|
|
<!-- <version>1.0</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>ZdxtComponent</groupId>-->
|
|
<!-- <artifactId>zdxtDynamicFormComponent</artifactId>-->
|
|
<!-- <version>1.0</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>
|
|
<groupId>EmergencyService</groupId>
|
|
<artifactId>zdxtEmergencyCommonService</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>-->
|
|
|
|
<!--oracle数据库连接驱动-->
|
|
<dependency>
|
|
<groupId>com.oracle</groupId>
|
|
<artifactId>ojdbc6</artifactId>
|
|
<version>11.2.0.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.3.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- cas客户端 -->
|
|
<dependency>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<artifactId>cas-client-core</artifactId>
|
|
<version>3.2.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- drools依赖 -->
|
|
<dependency>
|
|
<groupId>org.kie</groupId>
|
|
<artifactId>kie-spring</artifactId>
|
|
<version>7.37.0.Final</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-compiler</artifactId>
|
|
<version>7.37.0.Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>3.0.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.liaochong</groupId>
|
|
<artifactId>myexcel</artifactId>
|
|
<version>3.9.1</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.bstek.ureport</groupId>-->
|
|
<!-- <artifactId>ureport2-console</artifactId>-->
|
|
<!-- <version>2.2.9</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
<artifactId>aviator</artifactId>
|
|
<version>5.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
<version>2.1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sourceforge.htmlunit</groupId>
|
|
<artifactId>htmlunit</artifactId>
|
|
<version>2.41.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xml-apis</groupId>
|
|
<artifactId>xml-apis</artifactId>
|
|
<version>1.4.01</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>EmergencyXxlJob</groupId>-->
|
|
<!-- <artifactId>xxl-job-core</artifactId>-->
|
|
<!-- <version>1.0.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
<encoding>UTF-8</encoding>
|
|
<!-- <compilerArgs>-->
|
|
<!-- <arg>-XDignore.symbol.file</arg>-->
|
|
<!-- </compilerArgs>-->
|
|
<!-- <fork>true</fork>-->
|
|
</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>
|