|
|
@ -23,318 +23,106 @@ |
|
|
|
<dependencies> |
|
|
|
<!--TALL_SDK--> |
|
|
|
<dependency> |
|
|
|
<artifactId>tallsdk</artifactId> |
|
|
|
<artifactId>ptos_sdk</artifactId> |
|
|
|
<groupId>com.ccsensptos</groupId> |
|
|
|
<version>0.0.1-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-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> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.mybatis.generator</groupId> |
|
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId> |
|
|
|
<version>1.3.7</version> |
|
|
|
<configuration> |
|
|
|
<configurationFile>${basedir}/src/main/resources/mbg.xml</configurationFile> |
|
|
|
<overwrite>true</overwrite> |
|
|
|
</configuration> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>mysql</groupId> |
|
|
|
<artifactId>mysql-connector-java</artifactId> |
|
|
|
<version>5.1.34</version> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
|
|
|
|
|
</project> |
|
|
|
|
|
|
|
<!--<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">--> |
|
|
|
|
|
|
|
<!-- <modelVersion>4.0.0</modelVersion>--> |
|
|
|
<!-- <parent>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-parent</artifactId>--> |
|
|
|
<!-- <version>2.1.8.RELEASE</version>--> |
|
|
|
<!-- <relativePath/> <!– lookup parent from repository –>--> |
|
|
|
<!-- </parent>--> |
|
|
|
<!-- <groupId>com.ccsens</groupId>--> |
|
|
|
<!-- <artifactId>ptos_zero</artifactId>--> |
|
|
|
<!-- <version>0.0.1-SNAPSHOT</version>--> |
|
|
|
<!-- <name>ptos_zero</name>--> |
|
|
|
<!-- <description>Demo project for Spring Boot</description>--> |
|
|
|
|
|
|
|
<!-- <properties>--> |
|
|
|
<!-- <java.version>1.8</java.version>--> |
|
|
|
<!-- </properties>--> |
|
|
|
|
|
|
|
<!-- <dependencies>--> |
|
|
|
<!-- <!–TALL_SDK–>--> |
|
|
|
<!-- https://mvnrepository.com/artifact/io.netty/netty-all --> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <artifactId>tallsdk</artifactId>--> |
|
|
|
<!-- <groupId>com.ccsensptos</groupId>--> |
|
|
|
<!-- <version>0.0.1-SNAPSHOT</version>--> |
|
|
|
<!-- <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</artifactId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
<!-- <!–jjwt–>--> |
|
|
|
<!-- <!–spring 缓存–>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>io.jsonwebtoken</groupId>--> |
|
|
|
<!-- <artifactId>jjwt</artifactId>--> |
|
|
|
<!-- <version>0.7.0</version>--> |
|
|
|
<!-- <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-devtools</artifactId>--> |
|
|
|
<!-- <scope>runtime</scope>--> |
|
|
|
<!-- <optional>true</optional>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-jdbc</artifactId>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-configuration-processor</artifactId>--> |
|
|
|
<!-- <optional>true</optional>--> |
|
|
|
<!-- <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.projectlombok</groupId>--> |
|
|
|
<!-- <artifactId>lombok</artifactId>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-jetty</artifactId>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-configuration-processor</artifactId>--> |
|
|
|
<!-- <optional>true</optional>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-test</artifactId>--> |
|
|
|
<!-- <scope>test</scope>--> |
|
|
|
<!-- <exclusions>--> |
|
|
|
<!-- <exclusions> <!–排除android-json,与腾讯短信接口qcloudsms冲突–>--> |
|
|
|
<!-- <exclusion>--> |
|
|
|
<!-- <groupId>org.junit.vintage</groupId>--> |
|
|
|
<!-- <artifactId>junit-vintage-engine</artifactId>--> |
|
|
|
<!-- </exclusion>--> |
|
|
|
<!-- <exclusion><!–排除android-json,与腾讯短信接口qcloudsms冲突–>--> |
|
|
|
<!-- <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>javax.validation</groupId>--> |
|
|
|
<!-- <artifactId>validation-api</artifactId>--> |
|
|
|
<!-- <version>1.1.0.Final</version>--> |
|
|
|
<!-- <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>--> |
|
|
@ -359,36 +147,41 @@ |
|
|
|
<!-- <artifactId>druid</artifactId>--> |
|
|
|
<!-- <version>1.1.10</version>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
<!-- <!– hutool-all –>--> |
|
|
|
<!-- <!–jjwt–>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>cn.hutool</groupId>--> |
|
|
|
<!-- <artifactId>hutool-all</artifactId>--> |
|
|
|
<!-- <version>4.1.21</version>--> |
|
|
|
<!-- <groupId>io.jsonwebtoken</groupId>--> |
|
|
|
<!-- <artifactId>jjwt</artifactId>--> |
|
|
|
<!-- <version>0.7.0</version>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <!–Jackson Xml–>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>--> |
|
|
|
<!-- <groupId>com.fasterxml.jackson.dataformat</groupId>--> |
|
|
|
<!-- <artifactId>jackson-dataformat-xml</artifactId>--> |
|
|
|
<!-- <version>2.9.0</version>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
<!-- <!–Shiro –>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-jdbc</artifactId>--> |
|
|
|
<!-- <groupId>org.apache.shiro</groupId>--> |
|
|
|
<!-- <artifactId>shiro-spring</artifactId>--> |
|
|
|
<!-- <version>1.4.0</version>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
<!-- <!–HtmlCleaner–>--> |
|
|
|
<!-- <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>--> |
|
|
|
<!-- <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.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-jetty</artifactId>--> |
|
|
|
<!-- <groupId>org.apache.commons</groupId>--> |
|
|
|
<!-- <artifactId>commons-lang3</artifactId>--> |
|
|
|
<!-- <version>3.8.1</version>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <!–Swagger –>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>io.springfox</groupId>--> |
|
|
@ -407,48 +200,63 @@ |
|
|
|
<!-- <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.3.1</version>--> |
|
|
|
<!-- <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.3.1</version>--> |
|
|
|
<!-- <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>--> |
|
|
|
<!-- <plugins>--> |
|
|
|
<!-- <plugin>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>--> |
|
|
|
<!-- </plugin>--> |
|
|
|
<!-- <plugin>--> |
|
|
|
<!-- <groupId>org.mybatis.generator</groupId>--> |
|
|
|
<!-- <artifactId>mybatis-generator-maven-plugin</artifactId>--> |
|
|
|
<!-- <version>1.3.7</version>--> |
|
|
|
<!-- <configuration>--> |
|
|
|
<!-- <configurationFile>${basedir}/src/main/resources/mbg.xml</configurationFile>--> |
|
|
|
<!-- <overwrite>true</overwrite>--> |
|
|
|
<!-- </configuration>--> |
|
|
|
<!-- <dependencies>--> |
|
|
|
<!-- <dependency>--> |
|
|
|
<!-- <groupId>mysql</groupId>--> |
|
|
|
<!-- <artifactId>mysql-connector-java</artifactId>--> |
|
|
|
<!-- <version>5.1.34</version>--> |
|
|
|
<!-- </dependency>--> |
|
|
|
<!-- </dependencies>--> |
|
|
|
<!-- </plugin>--> |
|
|
|
<!-- </plugins>--> |
|
|
|
<!-- </build>--> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<!--</project>--> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.mybatis.generator</groupId> |
|
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId> |
|
|
|
<version>1.3.7</version> |
|
|
|
<configuration> |
|
|
|
<configurationFile>${basedir}/src/main/resources/mbg.xml</configurationFile> |
|
|
|
<overwrite>true</overwrite> |
|
|
|
</configuration> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>mysql</groupId> |
|
|
|
<artifactId>mysql-connector-java</artifactId> |
|
|
|
<version>5.1.34</version> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
|
|
|
|
|
</project> |
|
|
|