Files
smartClean/backend/xiaoqu-complex/pom.xml
xqzp2026 d932a33a75 feat: App 后台 Phase 1 Maven 治理 + Docker 部署
- 创建 xiaoqu-app-parent 统一父 POM,管理 4 个 App 模块依赖版本
- 统一 fastjson(1.2.83)、druid(1.2.27)、jedis(3.1.0) 等版本
- 子模块 POM 改造:继承父 POM,删除硬编码版本号
- 添加 Docker 部署方案(complex + mall 双容器)
- 添加 ARCHITECTURE.md 架构文档(三套 DAO 层、冻结规范、新项目规范)
- 关联需求:REQ-20260421-0011

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-21 16:56:25 +09:30

690 lines
24 KiB
XML

<?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">
<parent>
<groupId>me.iiv.xiaoqu</groupId>
<artifactId>xiaoqu-app-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../xiaoqu-app-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xiaoqu-complex</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<project.tomcat.version>7.0.68</project.tomcat.version>
<project.deploy>deploy</project.deploy>
</properties>
<profiles>
<profile>
<id>test181</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<serviceId>test181</serviceId>
<system.state>test181</system.state>
<webserver.port>8091</webserver.port>
<logLevel>DEBUG</logLevel>
<baseUrl>http://192.168.1.181:8091</baseUrl>
<!-- mybatis日志配置 NO_LOGGING STDOUT_LOGGING -->
<myBatisLogImpl>NO_LOGGING</myBatisLogImpl>
<tomcatUrl>http://192.168.1.181:8091/manager/text</tomcatUrl>
<!--设备通信url -->
<HubUrl>http://192.168.1.181:8087/device/</HubUrl>
<!--SaaS后台url -->
<SaaSUrl>http://192.168.1.182:8093/</SaaSUrl>
<!-- log日志文件名 -->
<log4jFile>./log/app.log</log4jFile>
<!-- 文件图片相关服务配置 -->
<fileServiceUrl>http://192.168.1.181:8088</fileServiceUrl>
<!-- redis相关配置 -->
<redis.host>192.168.1.181</redis.host>
<redis.port>6379</redis.port>
<redis.pass>kaixinjiuhao</redis.pass>
<redis.db>5</redis.db>
<redis.db14>13</redis.db14>
<servers.jdbc.user>root</servers.jdbc.user>
<servers.jdbc.password>kaixinjiuhao</servers.jdbc.password>
<servers.jdbc.jdbcUrl>jdbc:mysql://192.168.1.181:3306/xiaoqu_comples_d</servers.jdbc.jdbcUrl>
<!-- 数据库配置1 -->
<servers.jdbc.user1>root</servers.jdbc.user1>
<servers.jdbc.password1>kaixinjiuhao</servers.jdbc.password1>
<servers.jdbc.jdbcUrl1>jdbc:mysql://192.168.1.181:3306/xiaoqu_intellectual_d</servers.jdbc.jdbcUrl1>
<!-- 个推配置 -->
<appId>xOz8D11yhk5PXPo62Or6W2</appId>
<appSecret>zFrU26Tzbm9gSP5rHYDo9A</appSecret>
<appKey>V2u3Z9FZce7As9cUgFsCW7</appKey>
<masterSecret>maip9e0W3e9s273OLalVk2</masterSecret>
<!-- 阿里云OSS配置 -->
<ossEndpoint>http://oss-cn-beijing.aliyuncs.com</ossEndpoint>
<ossAccessKeyId>LTAI5tCmbdJj3dymcia6CbZs</ossAccessKeyId>
<ossAccessKeySecret>pZZaztTROhMc4ntRyuKg4cgITD3yo3</ossAccessKeySecret>
<ossBucketName>contractpic</ossBucketName>
<ossFolder>test190/</ossFolder>
<!-- ES配置 -->
<es_hosts>192.168.1.152</es_hosts>
<es_port>9200</es_port>
<es_userName></es_userName>
<es_userPassword></es_userPassword>
<!-- ES配置 -->
<es_hosts2>192.168.1.152</es_hosts2>
<es_port2>9200</es_port2>
<es_userName2></es_userName2>
<es_userPassword2></es_userPassword2>
<!-- 短信模板账号配置 -->
<phoneCallSmsUserName>xiaoqu</phoneCallSmsUserName>
<phoneCallSmsPassword>123456</phoneCallSmsPassword>
<SmsAdviseUserName>xiaoquadvise</SmsAdviseUserName>
<SmsAdviseUserPassword>541500</SmsAdviseUserPassword>
<xxl.job.admin.addresses>http://192.168.1.182:9080/xxl-job</xxl.job.admin.addresses>
<xxl.job.executor.appname>xiaoqu-franchisee</xxl.job.executor.appname>
</properties>
</profile>
<profile>
<id>test182</id>
<properties>
<serviceId>test182</serviceId>
<system.state>test182</system.state>
<webserver.port>8089</webserver.port>
<logLevel>DEBUG</logLevel>
<baseUrl>http://192.168.1.182:8086</baseUrl>
<!-- mybatis日志配置 NO_LOGGING STDOUT_LOGGING -->
<myBatisLogImpl>NO_LOGGING</myBatisLogImpl>
<tomcatUrl>http://192.168.1.182:8086/manager/text</tomcatUrl>
<!--设备通信url -->
<HubUrl>http://192.168.1.181:8087/device/</HubUrl>
<!--SaaS后台url -->
<SaaSUrl>http://192.168.1.182:8093/</SaaSUrl>
<!-- log日志文件名 -->
<log4jFile>./log/app.log</log4jFile>
<!-- 文件图片相关服务配置 -->
<fileServiceUrl>http://192.168.1.181:8088</fileServiceUrl>
<!-- redis相关配置 -->
<redis.host>192.168.1.181</redis.host>
<redis.port>6379</redis.port>
<redis.pass>kaixinjiuhao</redis.pass>
<redis.db>5</redis.db>
<redis.db14>13</redis.db14>
<servers.jdbc.user>root</servers.jdbc.user>
<servers.jdbc.password>kaixinjiuhao</servers.jdbc.password>
<servers.jdbc.jdbcUrl>jdbc:mysql://192.168.1.181:3306/xiaoqu_comples_d</servers.jdbc.jdbcUrl>
<!-- 个推配置 -->
<appId>xOz8D11yhk5PXPo62Or6W2</appId>
<appSecret>zFrU26Tzbm9gSP5rHYDo9A</appSecret>
<appKey>V2u3Z9FZce7As9cUgFsCW7</appKey>
<masterSecret>maip9e0W3e9s273OLalVk2</masterSecret>
<!-- 阿里云OSS配置 -->
<ossEndpoint>http://oss-cn-beijing.aliyuncs.com</ossEndpoint>
<ossAccessKeyId>LTAI5tCmbdJj3dymcia6CbZs</ossAccessKeyId>
<ossAccessKeySecret>pZZaztTROhMc4ntRyuKg4cgITD3yo3</ossAccessKeySecret>
<ossBucketName>contractpic</ossBucketName>
<ossFolder>test190/</ossFolder>
<!-- ES配置 -->
<es_hosts>192.168.1.152</es_hosts>
<es_port>9200</es_port>
<es_userName></es_userName>
<es_userPassword></es_userPassword>
<!-- ES配置 -->
<es_hosts2>192.168.1.152</es_hosts2>
<es_port2>9200</es_port2>
<es_userName2></es_userName2>
<es_userPassword2></es_userPassword2>
<!-- 短信模板账号配置 -->
<phoneCallSmsUserName>xiaoqu</phoneCallSmsUserName>
<phoneCallSmsPassword>123456</phoneCallSmsPassword>
<SmsAdviseUserName>xiaoquadvise</SmsAdviseUserName>
<SmsAdviseUserPassword>541500</SmsAdviseUserPassword>
<xxl.job.admin.addresses>http://192.168.1.182:9080/xxl-job</xxl.job.admin.addresses>
<xxl.job.executor.appname>xiaoqu-franchisee</xxl.job.executor.appname>
</properties>
</profile>
<profile>
<id>pre</id>
<properties>
<serviceId>pre</serviceId>
<system.state>pre</system.state>
<webserver.port>8089</webserver.port>
<logLevel>DEBUG</logLevel>
<baseUrl>http://192.168.1.241:8086</baseUrl>
<!-- mybatis日志配置 NO_LOGGING STDOUT_LOGGING -->
<myBatisLogImpl>NO_LOGGING</myBatisLogImpl>
<tomcatUrl>http://192.168.1.241:8086/manager/text</tomcatUrl>
<!--设备通信url -->
<HubUrl>http://192.168.1.241:8087/device/</HubUrl>
<!--SaaS后台url -->
<SaaSUrl>http://192.168.1.182:8093/</SaaSUrl>
<!-- log日志文件名 -->
<log4jFile>./log/app.log</log4jFile>
<!-- 文件图片相关服务配置 -->
<fileServiceUrl>http://192.168.1.241:8088</fileServiceUrl>
<!-- redis相关配置 -->
<redis.host>192.168.1.181</redis.host>
<redis.port>6379</redis.port>
<redis.pass>kaixinjiuhao</redis.pass>
<redis.db>5</redis.db>
<redis.db14>13</redis.db14>
<servers.jdbc.user>root</servers.jdbc.user>
<servers.jdbc.password>Kaixinjiuhao2019</servers.jdbc.password>
<servers.jdbc.jdbcUrl>jdbc:mysql://192.168.1.181:3306/xiaoqu_comples</servers.jdbc.jdbcUrl>
<!-- 数据库配置1 -->
<servers.jdbc.user1>root</servers.jdbc.user1>
<servers.jdbc.password1>Kaixinjiuhao2019</servers.jdbc.password1>
<servers.jdbc.jdbcUrl1>jdbc:mysql://192.168.1.181:3306/xiaoqu_intellectual</servers.jdbc.jdbcUrl1>
<!-- 个推配置 -->
<appId>xOz8D11yhk5PXPo62Or6W2</appId>
<appSecret>zFrU26Tzbm9gSP5rHYDo9A</appSecret>
<appKey>V2u3Z9FZce7As9cUgFsCW7</appKey>
<masterSecret>maip9e0W3e9s273OLalVk2</masterSecret>
<!-- 阿里云OSS配置 -->
<ossEndpoint>http://oss-cn-beijing.aliyuncs.com</ossEndpoint>
<ossAccessKeyId>LTAI5tCmbdJj3dymcia6CbZs</ossAccessKeyId>
<ossAccessKeySecret>pZZaztTROhMc4ntRyuKg4cgITD3yo3</ossAccessKeySecret>
<ossBucketName>contractpic</ossBucketName>
<ossFolder>test190/</ossFolder>
<!-- ES配置 -->
<es_hosts>192.168.1.241</es_hosts>
<es_port>9200</es_port>
<es_userName></es_userName>
<es_userPassword></es_userPassword>
<!-- ES配置 -->
<es_hosts2>192.168.1.241</es_hosts2>
<es_port2>9200</es_port2>
<es_userName2></es_userName2>
<es_userPassword2></es_userPassword2>
<!-- 短信模板账号配置 -->
<phoneCallSmsUserName>xiaoqu</phoneCallSmsUserName>
<phoneCallSmsPassword>123456</phoneCallSmsPassword>
<SmsAdviseUserName>xiaoquadvise</SmsAdviseUserName>
<SmsAdviseUserPassword>541500</SmsAdviseUserPassword>
<xxl.job.admin.addresses>http://192.168.1.241:9080/xxl-job</xxl.job.admin.addresses>
<xxl.job.executor.appname>xiaoqu-franchisee</xxl.job.executor.appname>
</properties>
</profile>
<profile>
<id>prd</id>
<properties>
<system.state>prd</system.state>
<serviceId>prd</serviceId>
<webserver.port>6080</webserver.port>
<logLevel>DEBUG</logLevel>
<!-- web页面访问地址 <baseUrl>http://background.xiaoqukeji.com</baseUrl> -->
<baseUrl>http://background.xiaoqukeji.com:8080</baseUrl>
<!-- mybatis日志级别 -->
<myBatisLogImpl>NO_LOGGING</myBatisLogImpl>
<!-- 自动化部署tomcat地址 -->
<tomcatUrl>http://172.16.0.183:8080/manager/text</tomcatUrl>
<!--设备通信url -->
<HubUrl>http://www.ququtec.com/device/</HubUrl>
<!--SaaS后台url -->
<SaaSUrl>http://webserver.ququtech.cn:9480/</SaaSUrl>
<!-- 文件图片相关服务配置 -->
<fileServiceUrl>http://fileserver.xiaoqukeji.com:8082</fileServiceUrl>
<!-- redis相关配置 -->
<redis.host>r-2zeq2rwmlmequod12f.redis.rds.aliyuncs.com</redis.host>
<redis.port>6379</redis.port>
<redis.pass>Xdny7dvk</redis.pass>
<redis.db>5</redis.db>
<redis.db14>14</redis.db14>
<!-- 数据库 -->
<servers.jdbc.user>xiaoqu_yanfa</servers.jdbc.user>
<servers.jdbc.password>Xdny7dvk</servers.jdbc.password>
<servers.jdbc.jdbcUrl>jdbc:mysql://rm-2zerw72wwh56sj214.mysql.rds.aliyuncs.com:3306/xiaoqu_complex</servers.jdbc.jdbcUrl>
<!-- 数据库配置1 -->
<servers.jdbc.user1>kaifa</servers.jdbc.user1>
<servers.jdbc.password1>zuo!QAZ2wsx!@#$</servers.jdbc.password1>
<servers.jdbc.jdbcUrl1>jdbc:mysql://rm-2zeqo70cga7961912.mysql.rds.aliyuncs.com:3306/xiaoqu_intellectual</servers.jdbc.jdbcUrl1>
<!-- log日志文件名 -->
<log4jFile>./logs/app.log</log4jFile>
<!-- 个推配置 -->
<appId>xOz8D11yhk5PXPo62Or6W2</appId>
<appSecret>zFrU26Tzbm9gSP5rHYDo9A</appSecret>
<appKey>V2u3Z9FZce7As9cUgFsCW7</appKey>
<masterSecret>maip9e0W3e9s273OLalVk2</masterSecret>
<!-- 阿里云OSS配置 -->
<ossEndpoint>http://oss-cn-beijing-internal.aliyuncs.com</ossEndpoint>
<ossAccessKeyId>LTAI5tCmbdJj3dymcia6CbZs</ossAccessKeyId>
<ossAccessKeySecret>pZZaztTROhMc4ntRyuKg4cgITD3yo3</ossAccessKeySecret>
<ossBucketName>contractpic</ossBucketName>
<ossFolder>online/</ossFolder>
<!-- ES配置 -->
<es_hosts>es-cn-oew1s2nrv00110ppc.elasticsearch.aliyuncs.com</es_hosts>
<es_port>9200</es_port>
<es_userName>elastic</es_userName>
<es_userPassword>HKtG0VJt8rsR7zIF</es_userPassword>
<!-- ES配置 -->
<es_hosts2>114.253.9.110</es_hosts2>
<es_port2>19800</es_port2>
<es_userName2>elastic</es_userName2>
<es_userPassword2>0a0sp22b4O0Q</es_userPassword2>
<!-- 短信模板账号配置 -->
<phoneCallSmsUserName>xqyuyin</phoneCallSmsUserName>
<phoneCallSmsPassword>qazwsx</phoneCallSmsPassword>
<SmsAdviseUserName>xiaoquadvise</SmsAdviseUserName>
<SmsAdviseUserPassword>541500</SmsAdviseUserPassword>
<xxl.job.admin.addresses>http://job.ququtech.cn:9380/xxl-job</xxl.job.admin.addresses>
<xxl.job.executor.appname>xiaoqu-franchisee</xxl.job.executor.appname>
</properties>
</profile>
<profile>
<id>docker</id>
<properties>
<serviceId>docker</serviceId>
<system.state>docker</system.state>
<webserver.port>8091</webserver.port>
<logLevel>DEBUG</logLevel>
<baseUrl>http://localhost:8091</baseUrl>
<myBatisLogImpl>NO_LOGGING</myBatisLogImpl>
<tomcatUrl>http://localhost:8091/manager/text</tomcatUrl>
<HubUrl>http://host.docker.internal:8087/device/</HubUrl>
<SaaSUrl>http://host.docker.internal:8093/</SaaSUrl>
<log4jFile>./log/app.log</log4jFile>
<fileServiceUrl>http://host.docker.internal:8088</fileServiceUrl>
<redis.host>host.docker.internal</redis.host>
<redis.port>6379</redis.port>
<redis.pass>kaixinjiuhao</redis.pass>
<redis.db>5</redis.db>
<redis.db14>13</redis.db14>
<servers.jdbc.user>root</servers.jdbc.user>
<servers.jdbc.password>kaixinjiuhao</servers.jdbc.password>
<servers.jdbc.jdbcUrl>jdbc:mysql://host.docker.internal:3306/xiaoqu_comples_d</servers.jdbc.jdbcUrl>
<servers.jdbc.user1>root</servers.jdbc.user1>
<servers.jdbc.password1>kaixinjiuhao</servers.jdbc.password1>
<servers.jdbc.jdbcUrl1>jdbc:mysql://host.docker.internal:3306/xiaoqu_intellectual_d</servers.jdbc.jdbcUrl1>
<appId>xOz8D11yhk5PXPo62Or6W2</appId>
<appSecret>zFrU26Tzbm9gSP5rHYDo9A</appSecret>
<appKey>V2u3Z9FZce7As9cUgFsCW7</appKey>
<masterSecret>maip9e0W3e9s273OLalVk2</masterSecret>
<ossEndpoint>http://oss-cn-beijing.aliyuncs.com</ossEndpoint>
<ossAccessKeyId>LTAI5tCmbdJj3dymcia6CbZs</ossAccessKeyId>
<ossAccessKeySecret>pZZaztTROhMc4ntRyuKg4cgITD3yo3</ossAccessKeySecret>
<ossBucketName>contractpic</ossBucketName>
<ossFolder>test190/</ossFolder>
<es_hosts>host.docker.internal</es_hosts>
<es_port>9200</es_port>
<es_userName></es_userName>
<es_userPassword></es_userPassword>
<es_hosts2>host.docker.internal</es_hosts2>
<es_port2>9200</es_port2>
<es_userName2></es_userName2>
<es_userPassword2></es_userPassword2>
<phoneCallSmsUserName>xiaoqu</phoneCallSmsUserName>
<phoneCallSmsPassword>123456</phoneCallSmsPassword>
<SmsAdviseUserName>xiaoquadvise</SmsAdviseUserName>
<SmsAdviseUserPassword>541500</SmsAdviseUserPassword>
<xxl.job.admin.addresses></xxl.job.admin.addresses>
<xxl.job.executor.appname>xiaoqu-franchisee</xxl.job.executor.appname>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
</dependency>
<dependency>
<groupId>xiaoqu.home.open</groupId>
<artifactId>xiaoqu-intellectual-public</artifactId>
</dependency>
<!-- Source: https://mvnrepository.com/artifact/com.yookue.forkextension.pinyin4j/pinyin4j -->
<dependency>
<groupId>com.yookue.forkextension.pinyin4j</groupId>
<artifactId>pinyin4j</artifactId>
<version>2.6.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>me.iiv.xiaoqu</groupId>
<artifactId>ElasticsearchPublic</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>me.iiv.xiaoqu</groupId>
<artifactId>xiaoqu-public</artifactId>
</dependency>
<!-- servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2.1-b03</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.3</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1</version>
</dependency>
<!-- jackson -->
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>net.sf.flexjson</groupId>
<artifactId>flexjson</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
</dependency>
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.7</version>
</dependency>
<dependency>
<groupId>org.apache.directory.studio</groupId>
<artifactId>org.apache.commons.io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-messaging</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-avro</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml/classmate -->
<dependency>
<groupId>com.fasterxml</groupId>
<artifactId>classmate</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<exclusions>
<exclusion>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>swagger-bootstrap-ui</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-bean-validators</artifactId>
</dependency>
<!-- /swagger -->
<!-- 阿里云短信服务 -->
<!-- jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>se.jiderhamn.classloader-leak-prevention</groupId>
<artifactId>classloader-leak-prevention-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>2.8.2</version>
</dependency>
</dependencies>
<build>
<finalName>ROOT</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<!--tomcat manager发布 -->
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version> <configuration> <url>http://127.0.0.1:8080/manager/text</url>
<username>tomcat</username> <password>tomcat</password> <server>tomcat</server>
<path>/</path> <update>true</update> </configuration> </plugin> -->
<!--tomcat manager发布 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>${tomcatUrl}</url>
<username>_qfbAdmin</username>
<password>_qfb2587</password>
<path>/</path>
<update>true</update>
</configuration>
</plugin>
<!-- jetty插件 -->
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.8.v20171121</version>
<configuration>
<httpConnector>
<port>${webserver.port}</port>
</httpConnector>
<webAppConfig>
<contextPath>/</contextPath>
<defaultsDescriptor>src/test/resources/webdefault.xml</defaultsDescriptor>
</webAppConfig>
<systemProperties>
<systemProperty>
<name>org.mortbay.util.URI.charset</name>
<value>${project.build.sourceEncoding}</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</project>