|
|
@ -13,6 +13,12 @@ |
|
|
|
<properties> |
|
|
|
<java.version>1.8</java.version> |
|
|
|
</properties> |
|
|
|
<parent> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
|
|
<version>2.1.8.RELEASE</version> |
|
|
|
<relativePath/> <!-- lookup parent from repository --> |
|
|
|
</parent> |
|
|
|
|
|
|
|
<dependencies> |
|
|
|
<!--cloud 工具类--> |
|
|
@ -40,8 +46,213 @@ |
|
|
|
<groupId>com.ccsens</groupId> |
|
|
|
<version>1.0-SNAPSHOT</version> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/io.netty/netty-all --> |
|
|
|
<dependency> |
|
|
|
<groupId>io.netty</groupId> |
|
|
|
<artifactId>netty-all</artifactId> |
|
|
|
<version>4.1.32.Final</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
|
|
</dependency> |
|
|
|
<!--spring 缓存--> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-cache</artifactId> |
|
|
|
</dependency> |
|
|
|
<!--多redis配置--> |
|
|
|
<dependency> |
|
|
|
<groupId>redis.clients</groupId> |
|
|
|
<artifactId>jedis</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
<exclusions> |
|
|
|
<exclusion> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
|
|
</exclusion> |
|
|
|
</exclusions> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-jetty</artifactId> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!--<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-devtools</artifactId> |
|
|
|
<scope>runtime</scope> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency>--> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.projectlombok</groupId> |
|
|
|
<artifactId>lombok</artifactId> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-test</artifactId> |
|
|
|
<exclusions> <!--排除android-json,与腾讯短信接口qcloudsms冲突--> |
|
|
|
<exclusion> |
|
|
|
<groupId>com.vaadin.external.google</groupId> |
|
|
|
<artifactId>android-json</artifactId> |
|
|
|
</exclusion> |
|
|
|
</exclusions> |
|
|
|
<scope>test</scope> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- hutool-all --> |
|
|
|
<dependency> |
|
|
|
<groupId>cn.hutool</groupId> |
|
|
|
<artifactId>hutool-all</artifactId> |
|
|
|
<version>4.1.21</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!--Poi Excel --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.poi</groupId> |
|
|
|
<artifactId>poi</artifactId> |
|
|
|
<version>3.17</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.poi</groupId> |
|
|
|
<artifactId>poi-ooxml</artifactId> |
|
|
|
<version>3.17</version> |
|
|
|
</dependency> |
|
|
|
<!--websocket--> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId> |
|
|
|
</dependency> |
|
|
|
<!-- spring RabbitMQ--> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId> |
|
|
|
</dependency> |
|
|
|
<!-- spring MyBatis --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.mybatis.spring.boot</groupId> |
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
|
|
<version>1.1.1</version> |
|
|
|
</dependency> |
|
|
|
<!-- mybatis pagehelper包--> |
|
|
|
<dependency> |
|
|
|
<groupId>com.github.pagehelper</groupId> |
|
|
|
<artifactId>pagehelper</artifactId> |
|
|
|
<version>4.1.4</version> |
|
|
|
</dependency> |
|
|
|
<!-- MySQL数据库 --> |
|
|
|
<dependency> |
|
|
|
<groupId>mysql</groupId> |
|
|
|
<artifactId>mysql-connector-java</artifactId> |
|
|
|
</dependency> |
|
|
|
<!--Durid数据源--> |
|
|
|
<dependency> |
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
<artifactId>druid</artifactId> |
|
|
|
<version>1.1.10</version> |
|
|
|
</dependency> |
|
|
|
<!--jjwt--> |
|
|
|
<dependency> |
|
|
|
<groupId>io.jsonwebtoken</groupId> |
|
|
|
<artifactId>jjwt</artifactId> |
|
|
|
<version>0.7.0</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
<!--Jackson Xml--> |
|
|
|
<dependency> |
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId> |
|
|
|
<artifactId>jackson-dataformat-xml</artifactId> |
|
|
|
<version>2.9.0</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!--Shiro --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.shiro</groupId> |
|
|
|
<artifactId>shiro-spring</artifactId> |
|
|
|
<version>1.4.0</version> |
|
|
|
</dependency> |
|
|
|
<!--HtmlCleaner--> |
|
|
|
<dependency> |
|
|
|
<groupId>net.sourceforge.htmlcleaner</groupId> |
|
|
|
<artifactId>htmlcleaner</artifactId> |
|
|
|
<version>2.22</version> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.commons</groupId> |
|
|
|
<artifactId>commons-lang3</artifactId> |
|
|
|
<version>3.8.1</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
<!--Swagger --> |
|
|
|
<dependency> |
|
|
|
<groupId>io.springfox</groupId> |
|
|
|
<artifactId>springfox-swagger2</artifactId> |
|
|
|
<version>2.9.2</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>io.springfox</groupId> |
|
|
|
<artifactId>springfox-swagger-ui</artifactId> |
|
|
|
<version>2.9.2</version> |
|
|
|
</dependency> |
|
|
|
<!--mybatis generator包--> |
|
|
|
<dependency> |
|
|
|
<groupId>org.mybatis.generator</groupId> |
|
|
|
<artifactId>mybatis-generator-core</artifactId> |
|
|
|
<version>1.3.7</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.beanshell/bsh --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.beanshell</groupId> |
|
|
|
<artifactId>bsh</artifactId> |
|
|
|
<version>2.0b5</version> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.httpcomponents</groupId> |
|
|
|
<artifactId>httpclient</artifactId> |
|
|
|
<version>4.5.1</version> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.httpcomponents</groupId> |
|
|
|
<artifactId>httpcore</artifactId> |
|
|
|
<version>4.4.3</version> |
|
|
|
</dependency> |
|
|
|
<!--腾讯短信--> |
|
|
|
<dependency> |
|
|
|
<groupId>com.github.qcloudsms</groupId> |
|
|
|
<artifactId>qcloudsms</artifactId> |
|
|
|
<version>1.0.5</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
<artifactId>fastjson</artifactId> |
|
|
|
<version>1.2.62</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<build> |
|
|
|