|
|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
|
|
|
|
|
<groupId>com.ynxbd</groupId> |
|
|
|
|
<artifactId>wx</artifactId> |
|
|
|
|
<version>6.0.1</version> |
|
|
|
|
<version>6.2.1</version> |
|
|
|
|
<packaging>war</packaging> |
|
|
|
|
|
|
|
|
|
<name>wx Maven Webapp</name> |
|
|
|
|
@ -18,8 +18,9 @@ |
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source> |
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target> |
|
|
|
|
<struts.version>6.8.0</struts.version> |
|
|
|
|
<jsckson.version>2.18.5</jsckson.version> |
|
|
|
|
<jackson.version>2.15.4</jackson.version> |
|
|
|
|
<fastjson.version>1.2.83</fastjson.version> |
|
|
|
|
<slf4j.version>2.0.7</slf4j.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
@ -38,25 +39,17 @@ |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>fastjson</artifactId> |
|
|
|
|
<version>${fastjson.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- struts2核心依赖 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.struts</groupId> |
|
|
|
|
<artifactId>struts2-core</artifactId> |
|
|
|
|
<version>${struts.version}</version> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<version>${slf4j.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- struts2零配置依赖 --> |
|
|
|
|
<!--servlet--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.struts</groupId> |
|
|
|
|
<artifactId>struts2-convention-plugin</artifactId> |
|
|
|
|
<version>${struts.version}</version> |
|
|
|
|
<type>jar</type> |
|
|
|
|
<scope>compile</scope> |
|
|
|
|
<groupId>javax.servlet</groupId> |
|
|
|
|
<artifactId>javax.servlet-api</artifactId> |
|
|
|
|
<version>4.0.1</version> |
|
|
|
|
<scope>provided</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- logback含sl4j 1.3.x系支持jdk1.8 --> |
|
|
|
|
@ -70,35 +63,99 @@ |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.rabbitmq</groupId> |
|
|
|
|
<artifactId>amqp-client</artifactId> |
|
|
|
|
<version>5.27.0</version> |
|
|
|
|
<version>5.27.1</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>javax.servlet</groupId> |
|
|
|
|
<artifactId>jstl</artifactId> |
|
|
|
|
<version>1.2</version> |
|
|
|
|
<groupId>org.ehcache</groupId> |
|
|
|
|
<artifactId>ehcache</artifactId> |
|
|
|
|
<version>3.11.1</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>redis.clients</groupId> |
|
|
|
|
<artifactId>jedis</artifactId> |
|
|
|
|
<version>7.1.0</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.auth0</groupId> |
|
|
|
|
<artifactId>java-jwt</artifactId> |
|
|
|
|
<version>4.5.0</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>fastjson</artifactId> |
|
|
|
|
<version>${fastjson.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- jackson --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
|
<artifactId>jackson-core</artifactId> |
|
|
|
|
<version>${jsckson.version}</version> |
|
|
|
|
<version>${jackson.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
|
<artifactId>jackson-databind</artifactId> |
|
|
|
|
<version>${jsckson.version}</version> |
|
|
|
|
<version>${jackson.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
|
<artifactId>jackson-annotations</artifactId> |
|
|
|
|
<version>${jsckson.version}</version> |
|
|
|
|
<version>${jackson.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- struts2核心依赖 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.struts</groupId> |
|
|
|
|
<artifactId>struts2-core</artifactId> |
|
|
|
|
<version>${struts.version}</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>error_prone_annotations</artifactId> |
|
|
|
|
<groupId>com.google.errorprone</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- struts2零配置依赖 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.struts</groupId> |
|
|
|
|
<artifactId>struts2-convention-plugin</artifactId> |
|
|
|
|
<version>${struts.version}</version> |
|
|
|
|
<type>jar</type> |
|
|
|
|
<scope>compile</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- 微信菜单-包冲突 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>javax.servlet</groupId> |
|
|
|
|
<artifactId>jstl</artifactId> |
|
|
|
|
<version>1.2</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- 微信菜单-包冲突--> |
|
|
|
|
<!-- <dependency>--> |
|
|
|
|
<!-- <groupId>com.soecode.wx-tools</groupId>--> |
|
|
|
|
<!-- <artifactId>wx-tools</artifactId>--> |
|
|
|
|
@ -120,28 +177,12 @@ |
|
|
|
|
<groupId>org.json</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>httpclient</artifactId> |
|
|
|
|
<groupId>org.apache.httpcomponents</groupId> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- FTP工具包 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>commons-net</groupId> |
|
|
|
|
<artifactId>commons-net</artifactId> |
|
|
|
|
<version>3.12.0</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- 共享文件工具包--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>eu.agno3.jcifs</groupId> |
|
|
|
|
<artifactId>jcifs-ng</artifactId> |
|
|
|
|
<version>2.1.6</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>commons-codec</groupId> |
|
|
|
|
<artifactId>commons-codec</artifactId> |
|
|
|
|
@ -160,24 +201,48 @@ |
|
|
|
|
<version>4.5.0</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- XML --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId> |
|
|
|
|
<artifactId>xstream</artifactId> |
|
|
|
|
<version>1.4.21</version> |
|
|
|
|
<groupId>org.apache.pdfbox</groupId> |
|
|
|
|
<artifactId>pdfbox</artifactId> |
|
|
|
|
<version>2.0.25</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>commons-logging</artifactId> |
|
|
|
|
<groupId>commons-logging</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- mysql驱动包 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>mysql</groupId> |
|
|
|
|
<artifactId>mysql-connector-java</artifactId> |
|
|
|
|
<version>5.1.47</version> |
|
|
|
|
<groupId>org.apache.poi</groupId> |
|
|
|
|
<artifactId>poi</artifactId> |
|
|
|
|
<version>5.5.0</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>commons-io</artifactId> |
|
|
|
|
<groupId>commons-io</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>log4j-api</artifactId> |
|
|
|
|
<groupId>org.apache.logging.log4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>druid</artifactId> |
|
|
|
|
<version>1.2.5</version> |
|
|
|
|
<groupId>org.apache.poi</groupId> |
|
|
|
|
<artifactId>poi-ooxml</artifactId> |
|
|
|
|
<version>5.5.0</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>commons-io</artifactId> |
|
|
|
|
<groupId>commons-io</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>log4j-api</artifactId> |
|
|
|
|
<groupId>org.apache.logging.log4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!--dom4j--> |
|
|
|
|
@ -187,11 +252,12 @@ |
|
|
|
|
<version>2.1.4</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- <dependency>--> |
|
|
|
|
<!-- <groupId>com.github.wechatpay-apiv3</groupId>--> |
|
|
|
|
<!-- <artifactId>wechatpay-apache-httpclient</artifactId>--> |
|
|
|
|
<!-- <version>0.4.4</version>--> |
|
|
|
|
<!-- </dependency>--> |
|
|
|
|
<!-- XML --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId> |
|
|
|
|
<artifactId>xstream</artifactId> |
|
|
|
|
<version>1.4.21</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- xml主要依赖 --> |
|
|
|
|
<dependency> |
|
|
|
|
@ -200,10 +266,18 @@ |
|
|
|
|
<version>1.2.0</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- FTP工具包--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.ehcache</groupId> |
|
|
|
|
<artifactId>ehcache</artifactId> |
|
|
|
|
<version>3.11.1</version> |
|
|
|
|
<groupId>commons-net</groupId> |
|
|
|
|
<artifactId>commons-net</artifactId> |
|
|
|
|
<version>3.12.0</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- 共享文件工具包--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>eu.agno3.jcifs</groupId> |
|
|
|
|
<artifactId>jcifs-ng</artifactId> |
|
|
|
|
<version>2.1.6</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
@ -219,20 +293,6 @@ |
|
|
|
|
<version>3.4.1</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.mariadb.jdbc</groupId> |
|
|
|
|
<artifactId>mariadb-java-client</artifactId> |
|
|
|
|
<version>3.0.8</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!--servlet--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>javax.servlet</groupId> |
|
|
|
|
<artifactId>javax.servlet-api</artifactId> |
|
|
|
|
<version>4.0.1</version> |
|
|
|
|
<scope>provided</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!--阿里云短信--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.aliyun</groupId> |
|
|
|
|
@ -259,30 +319,49 @@ |
|
|
|
|
<artifactId>commons-codec</artifactId> |
|
|
|
|
<groupId>commons-codec</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!--百度身份证识别--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.baidu.aip</groupId> |
|
|
|
|
<artifactId>java-sdk</artifactId> |
|
|
|
|
<version>4.16.8</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>json</artifactId> |
|
|
|
|
<groupId>org.json</groupId> |
|
|
|
|
<artifactId>jaxb-runtime</artifactId> |
|
|
|
|
<groupId>org.glassfish.jaxb</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>gson</artifactId> |
|
|
|
|
<groupId>com.google.code.gson</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>guava</artifactId> |
|
|
|
|
<groupId>com.google.guava</groupId> |
|
|
|
|
<artifactId>httpcore</artifactId> |
|
|
|
|
<groupId>org.apache.httpcomponents</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>commons-logging</artifactId> |
|
|
|
|
<groupId>commons-logging</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>httpclient</artifactId> |
|
|
|
|
<groupId>org.apache.httpcomponents</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>druid</artifactId> |
|
|
|
|
<version>1.2.27</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- mysql驱动包 --> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>mysql</groupId> |
|
|
|
|
<artifactId>mysql-connector-java</artifactId> |
|
|
|
|
<version>5.1.47</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.mariadb.jdbc</groupId> |
|
|
|
|
<artifactId>mariadb-java-client</artifactId> |
|
|
|
|
<version>3.0.8</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.microsoft.sqlserver</groupId> |
|
|
|
|
<artifactId>mssql-jdbc</artifactId> |
|
|
|
|
@ -309,6 +388,14 @@ |
|
|
|
|
<artifactId>gson</artifactId> |
|
|
|
|
<groupId>com.google.code.gson</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>checker-qual</artifactId> |
|
|
|
|
<groupId>org.checkerframework</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>error_prone_annotations</artifactId> |
|
|
|
|
<groupId>com.google.errorprone</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
@ -332,87 +419,35 @@ |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.auth0</groupId> |
|
|
|
|
<artifactId>java-jwt</artifactId> |
|
|
|
|
<version>3.19.2</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>jackson-databind</artifactId> |
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--百度身份证识别--> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.poi</groupId> |
|
|
|
|
<artifactId>poi</artifactId> |
|
|
|
|
<version>5.5.0</version> |
|
|
|
|
<groupId>com.baidu.aip</groupId> |
|
|
|
|
<artifactId>java-sdk</artifactId> |
|
|
|
|
<version>4.16.18</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>commons-io</artifactId> |
|
|
|
|
<groupId>commons-io</groupId> |
|
|
|
|
<artifactId>json</artifactId> |
|
|
|
|
<groupId>org.json</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>log4j-api</artifactId> |
|
|
|
|
<groupId>org.apache.logging.log4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.poi</groupId> |
|
|
|
|
<artifactId>poi-ooxml</artifactId> |
|
|
|
|
<version>5.5.0</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>commons-io</artifactId> |
|
|
|
|
<groupId>commons-io</groupId> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>log4j-api</artifactId> |
|
|
|
|
<groupId>org.apache.logging.log4j</groupId> |
|
|
|
|
<artifactId>guava</artifactId> |
|
|
|
|
<groupId>com.google.guava</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.pdfbox</groupId> |
|
|
|
|
<artifactId>pdfbox</artifactId> |
|
|
|
|
<version>2.0.25</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>cn.hutool</groupId> |
|
|
|
|
<artifactId>hutool-all</artifactId> |
|
|
|
|
<version>5.8.41</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- <!– https://mvnrepository.com/artifact/com.rabbitmq/amqp-client –>--> |
|
|
|
|
<!-- <dependency>--> |
|
|
|
|
<!-- <groupId>com.rabbitmq</groupId>--> |
|
|
|
|
<!-- <artifactId>amqp-client</artifactId>--> |
|
|
|
|
<!-- <version>5.14.2</version>--> |
|
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>redis.clients</groupId> |
|
|
|
|
<artifactId>jedis</artifactId> |
|
|
|
|
<version>7.1.0</version> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.alipay.sdk</groupId> |
|
|
|
|
<artifactId>easysdk-kernel</artifactId> |
|
|
|
|
<version>1.0.12</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.tencent</groupId> |
|
|
|
|
<artifactId>healthcard</artifactId> |
|
|
|
|
|