| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 | 
							- <?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>cn.com.ctop</groupId>
 
-     <artifactId>track</artifactId>
 
-     <version>1.0-SNAPSHOT</version>
 
-     <parent>
 
-         <groupId>org.springframework.boot</groupId>
 
-         <artifactId>spring-boot-starter-parent</artifactId>
 
-         <version>2.1.3.RELEASE</version>
 
-         <relativePath/>
 
-     </parent>
 
-     <properties>
 
-         <java.version>1.8</java.version>
 
-         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
-         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
-         <mybatis-plus.version>3.0.6</mybatis-plus.version>
 
-         <druid.version>1.1.10</druid.version>
 
-         <commons.version>2.6</commons.version>
 
-     </properties>
 
-     <dependencies>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-web</artifactId>
 
- <!--            <exclusions>-->
 
- <!--                <exclusion>-->
 
- <!--                    <groupId>ch.qos.logback</groupId>-->
 
- <!--                    <artifactId>logback-classic</artifactId>-->
 
- <!--                </exclusion>-->
 
- <!--            </exclusions>-->
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.google.guava</groupId>
 
-             <artifactId>guava</artifactId>
 
-             <version>25.0-jre</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.slf4j</groupId>
 
-             <artifactId>jcl-over-slf4j</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-aop</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-actuator</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>commons-io</groupId>
 
-             <artifactId>commons-io</artifactId>
 
-             <version>${commons.version}</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>commons-lang</groupId>
 
-             <artifactId>commons-lang</artifactId>
 
-             <version>${commons.version}</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.projectlombok</groupId>
 
-             <artifactId>lombok</artifactId>
 
-         </dependency>
 
-         <!-- mybatis-plus -->
 
-         <dependency>
 
-             <groupId>com.baomidou</groupId>
 
-             <artifactId>mybatis-plus-boot-starter</artifactId>
 
-             <version>${mybatis-plus.version}</version>
 
-         </dependency>
 
-         <!-- druid -->
 
-         <dependency>
 
-             <groupId>com.alibaba</groupId>
 
-             <artifactId>druid-spring-boot-starter</artifactId>
 
-             <version>${druid.version}</version>
 
-         </dependency>
 
-         <!-- 动态数据源 -->
 
-         <dependency>
 
-             <groupId>com.baomidou</groupId>
 
-             <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
 
-             <version>2.5.4</version>
 
-         </dependency>
 
-         <!-- json -->
 
-         <dependency>
 
-             <groupId>com.alibaba</groupId>
 
-             <artifactId>fastjson</artifactId>
 
-             <version>1.2.56</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.baomidou</groupId>
 
-             <artifactId>mybatis-plus</artifactId>
 
-             <version>3.3.1.tmp</version>
 
-         </dependency>
 
-         <!--mysql-->
 
-         <dependency>
 
-             <groupId>mysql</groupId>
 
-             <artifactId>mysql-connector-java</artifactId>
 
-             <version>5.1.47</version>
 
-             <scope>runtime</scope>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>net.sourceforge.jtds</groupId>
 
-             <artifactId>jtds</artifactId>
 
-             <version>1.3.1</version>
 
-             <scope>runtime</scope>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.apache.httpcomponents</groupId>
 
-             <artifactId>httpclient</artifactId>
 
-             <version>4.5.9</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.apache.httpcomponents</groupId>
 
-             <artifactId>httpcore</artifactId>
 
-             <version>4.4</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.squareup.retrofit2</groupId>
 
-             <artifactId>retrofit</artifactId>
 
-             <version>2.6.0</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>commons-codec</groupId>
 
-             <artifactId>commons-codec</artifactId>
 
-             <version>1.11</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.google.code.gson</groupId>
 
-             <artifactId>gson</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>cn.hutool</groupId>
 
-             <artifactId>hutool-all</artifactId>
 
-             <version>4.5.11</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>log4j</groupId>
 
-             <artifactId>log4j</artifactId>
 
-             <version>1.2.17</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.tencentcloudapi</groupId>
 
-             <artifactId>tencentcloud-sdk-java</artifactId>
 
-             <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
 
-             <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
 
-             <version>3.1.414</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.qcloud</groupId>
 
-             <artifactId>vod_api</artifactId>
 
-             <version>2.1.4</version>
 
-         </dependency>
 
-     </dependencies>
 
-     <build>
 
-         <plugins>
 
-             <plugin>
 
-                 <groupId>org.springframework.boot</groupId>
 
-                 <artifactId>spring-boot-maven-plugin</artifactId>
 
-             </plugin>
 
-         </plugins>
 
-         <resources>
 
-             <resource>
 
-                 <directory>src/main/java</directory>
 
-                 <includes>
 
-                     <include>**/*.yml</include>
 
-                     <include>**/*.properties</include>
 
-                     <include>**/*.xml</include>
 
-                 </includes>
 
-                 <filtering>false</filtering>
 
-             </resource>
 
-             <resource>
 
-                 <directory>src/main/resources</directory>
 
-                 <includes>
 
-                     <include>**/*.yml</include>
 
-                     <include>**/*.properties</include>
 
-                     <include>**/*.xml</include>
 
-                 </includes>
 
-                 <filtering>false</filtering>
 
-             </resource>
 
-         </resources>
 
-     </build>
 
- </project>
 
 
  |