Explorar el Código

fix:修改pom文件

wangr hace 2 años
padre
commit
af9333ec02

+ 15 - 3
pom.xml

@@ -29,9 +29,6 @@
         <spring-boot.version>2.6.8</spring-boot.version>
         <spring-cloud.version>2021.0.1</spring-cloud.version>
         <spring-cloud-alibaba.version>2021.0.1.0</spring-cloud-alibaba.version>
-        <!--        <spring-boot.version>2.3.9.RELEASE</spring-boot.version>-->
-        <!--        <spring-cloud.version>Hoxton.SR8</spring-cloud.version>-->
-        <!--        <spring-cloud-alibaba.version>2.2.5.RELEASE</spring-cloud-alibaba.version>-->
         <alibaba.nacos.version>2.0.4</alibaba.nacos.version>
         <alibaba.seata.version>1.5.1</alibaba.seata.version>
         <zipkin.version>2.2.8.RELEASE</zipkin.version>
@@ -236,6 +233,7 @@
                 <artifactId>swagger-models</artifactId>
                 <version>${swagger.core.version}</version>
             </dependency>
+
             <dependency>
                 <groupId>io.swagger</groupId>
                 <artifactId>swagger-annotations</artifactId>
@@ -393,6 +391,20 @@
                 <version>${javax.persistence.version}</version>
             </dependency>
 
+            <!-- springfox-swagger2 -->
+            <dependency>
+                <groupId>io.springfox</groupId>
+                <artifactId>springfox-swagger2</artifactId>
+                <version>${swagger.fox.version}</version>
+            </dependency>
+
+            <!-- springfox-swagger2-ui -->
+            <dependency>
+                <groupId>io.springfox</groupId>
+                <artifactId>springfox-swagger-ui</artifactId>
+                <version>${swagger.fox.version}</version>
+            </dependency>
+
             <!-- 核心模块 -->
             <dependency>
                 <groupId>com.qhiot</groupId>

+ 0 - 5
qhiot-common/qhiot-boot-starter-web/pom.xml

@@ -30,11 +30,6 @@
             </exclusions>
         </dependency>
 
-        <dependency>
-            <groupId>com.qhiot</groupId>
-            <artifactId>qhiot-common-core</artifactId>
-        </dependency>
-
     </dependencies>
 
 </project>

+ 6 - 0
qhiot-common/qhiot-cloud-starter/pom.xml

@@ -37,6 +37,12 @@
             <artifactId>spring-cloud-starter-openfeign</artifactId>
         </dependency>
 
+        <!-- SpringCloud Kafka -->
+        <dependency>
+            <groupId>org.springframework.cloud</groupId>
+            <artifactId>spring-cloud-stream-binder-kafka</artifactId>
+        </dependency>
+
         <!-- SpringCloud Loadbalancer -->
         <dependency>
             <groupId>org.springframework.cloud</groupId>

+ 0 - 5
qhiot-common/qhiot-common-log/pom.xml

@@ -28,11 +28,6 @@
             <artifactId>lombok</artifactId>
         </dependency>
 
-        <dependency>
-            <groupId>com.baomidou</groupId>
-            <artifactId>mybatis-plus-annotation</artifactId>
-        </dependency>
-
     </dependencies>
 
 </project>

+ 3 - 4
qhiot-common/qhiot-common-stream/pom.xml

@@ -13,18 +13,17 @@
     <version>1.1.1</version>
 
     <dependencies>
+
         <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-stream</artifactId>
         </dependency>
+
         <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-stream-binder-kafka</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.projectlombok</groupId>
-            <artifactId>lombok</artifactId>
-        </dependency>
+
     </dependencies>
 
 </project>

+ 0 - 804
qhiot-link-data-server/pom.xml

@@ -39,807 +39,3 @@
     </dependencyManagement>
 
 </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 http://maven.apache.org/xsd/maven-4.0.0.xsd">-->
-    <!--    <modelVersion>4.0.0</modelVersion>-->
-
-    <!--    <groupId>com.qhiot</groupId>-->
-    <!--    <artifactId>qhiot-link-data-server</artifactId>-->
-    <!--    <packaging>pom</packaging>-->
-    <!--    <version>1.1.1</version>-->
-    <!--    <modules>-->
-    <!--        <module>qhiot-link-server</module>-->
-    <!--        <module>qhiot-link-data</module>-->
-    <!--        <module>qhiot-link-start</module>-->
-    <!--    </modules>-->
-
-    <!--    <properties>-->
-    <!--        <qhiot.version>1.1.1</qhiot.version>-->
-    <!--        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
-    <!--        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>-->
-    <!--        <java.version>1.8</java.version>-->
-    <!--        <kotlin.version>1.7.0</kotlin.version>-->
-    <!--        <spring-boot.version>2.6.8</spring-boot.version>-->
-    <!--        <spring-cloud.version>2021.0.1</spring-cloud.version>-->
-    <!--        <spring-cloud-alibaba.version>2021.0.1.0</spring-cloud-alibaba.version>-->
-    <!--        &lt;!&ndash;        <spring-boot.version>2.3.9.RELEASE</spring-boot.version>&ndash;&gt;-->
-    <!--        &lt;!&ndash;        <spring-cloud.version>Hoxton.SR8</spring-cloud.version>&ndash;&gt;-->
-    <!--        &lt;!&ndash;        <spring-cloud-alibaba.version>2.2.5.RELEASE</spring-cloud-alibaba.version>&ndash;&gt;-->
-    <!--        <alibaba.nacos.version>2.0.4</alibaba.nacos.version>-->
-    <!--        <alibaba.seata.version>1.5.1</alibaba.seata.version>-->
-    <!--        <zipkin.version>2.2.8.RELEASE</zipkin.version>-->
-    <!--        <spring-boot-admin.version>2.6.7</spring-boot-admin.version>-->
-    <!--        <spring-boot.mybatis.version>2.2.2</spring-boot.mybatis.version>-->
-    <!--        <spring-boot.mybatis-plus.version>3.4.3.4</spring-boot.mybatis-plus.version>-->
-    <!--        <spring-boot.dynamic-datasource.version>3.2.0</spring-boot.dynamic-datasource.version>-->
-    <!--        <swagger.fox.version>3.0.0</swagger.fox.version>-->
-    <!--        <swagger.core.version>1.6.2</swagger.core.version>-->
-    <!--        <tobato.version>1.27.2</tobato.version>-->
-    <!--        <kaptcha.version>2.3.2</kaptcha.version>-->
-    <!--        <pagehelper.boot.version>1.4.1</pagehelper.boot.version>-->
-    <!--        &lt;!&ndash;        <druid.version>1.2.11</druid.version>&ndash;&gt;-->
-    <!--        <druid.version>1.1.20</druid.version>-->
-    <!--        <easy-es.version>0.9.60</easy-es.version>-->
-    <!--        <dynamic-ds.version>3.5.1</dynamic-ds.version>-->
-    <!--        <commons.io.version>2.11.0</commons.io.version>-->
-    <!--        <commons.email.version>1.5</commons.email.version>-->
-    <!--        <commons.fileupload.version>1.4</commons.fileupload.version>-->
-    <!--        <velocity.version>2.3</velocity.version>-->
-    <!--        <fastjson.version>1.2.56</fastjson.version>-->
-    <!--        <fastjson2.version>2.0.8</fastjson2.version>-->
-    <!--        <jjwt.version>0.9.1</jjwt.version>-->
-    <!--        <jjwt-jackson.version>0.10.7</jjwt-jackson.version>-->
-    <!--        <jjwt-impl.version>0.10.7</jjwt-impl.version>-->
-    <!--        <jjwt-api.version>0.10.7</jjwt-api.version>-->
-    <!--        <minio.version>8.2.2</minio.version>-->
-    <!--        <poi.version>4.1.2</poi.version>-->
-    <!--        <commons-collections.version>3.2.2</commons-collections.version>-->
-    <!--        <transmittable-thread-local.version>2.12.2</transmittable-thread-local.version>-->
-    <!--        <hutool.version>5.5.8</hutool.version>-->
-    <!--        <influxdb.version>2.15</influxdb.version>-->
-    <!--        <slf4j.version>1.7.36</slf4j.version>-->
-    <!--        <disruptor.version>3.4.2</disruptor.version>-->
-    <!--        <jxls.version>2.4.0</jxls.version>-->
-    <!--        &lt;!&ndash;        <netty.version></netty.version>&ndash;&gt;-->
-    <!--        &lt;!&ndash;        <caffeine.version></caffeine.version>&ndash;&gt;-->
-    <!--        <commons-lang.version>2.4</commons-lang.version>-->
-    <!--        <commons-beanutils.version>1.9.2</commons-beanutils.version>-->
-    <!--        <google-guava.version>31.0.1-jre</google-guava.version>-->
-    <!--        <aliyun.sdk.java.version>3.3.1</aliyun.sdk.java.version>-->
-    <!--        <aliyun.sdk.dysmsapi.version>1.0.0</aliyun.sdk.dysmsapi.version>-->
-    <!--        <aliyun.sdk.oss.version>3.6.0</aliyun.sdk.oss.version>-->
-
-    <!--        <javax.persistence.version>1.0.2</javax.persistence.version>-->
-    <!--    </properties>-->
-
-    <!--    &lt;!&ndash; 依赖声明 &ndash;&gt;-->
-    <!--    <dependencyManagement>-->
-    <!--        <dependencies>-->
-
-    <!--            &lt;!&ndash; SpringCloud 微服务 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.springframework.cloud</groupId>-->
-    <!--                <artifactId>spring-cloud-dependencies</artifactId>-->
-    <!--                <version>${spring-cloud.version}</version>-->
-    <!--                <type>pom</type>-->
-    <!--                <scope>import</scope>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; SpringCloud Zipkin 配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.springframework.cloud</groupId>-->
-    <!--                <artifactId>spring-cloud-starter-zipkin</artifactId>-->
-    <!--                <version>${zipkin.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; SpringCloud Alibaba 微服务 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.alibaba.cloud</groupId>-->
-    <!--                <artifactId>spring-cloud-alibaba-dependencies</artifactId>-->
-    <!--                <version>${spring-cloud-alibaba.version}</version>-->
-    <!--                <type>pom</type>-->
-    <!--                <scope>import</scope>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Alibaba Nacos 配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.alibaba.nacos</groupId>-->
-    <!--                <artifactId>nacos-client</artifactId>-->
-    <!--                <version>${alibaba.nacos.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Alibaba Seata 配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.seata</groupId>-->
-    <!--                <artifactId>seata-spring-boot-starter</artifactId>-->
-    <!--                <version>${alibaba.seata.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; SpringBoot 依赖配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.springframework.boot</groupId>-->
-    <!--                <artifactId>spring-boot-dependencies</artifactId>-->
-    <!--                <version>${spring-boot.version}</version>-->
-    <!--                <type>pom</type>-->
-    <!--                <scope>import</scope>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>org.springframework.boot</groupId>-->
-    <!--                <artifactId>spring-boot-starter-web</artifactId>-->
-    <!--                <version>${spring-boot.version}</version>-->
-    <!--                <exclusions>-->
-    <!--                    <exclusion>-->
-    <!--                        <artifactId>spring-boot-starter-logging</artifactId>-->
-    <!--                        <groupId>org.springframework.boot</groupId>-->
-    <!--                    </exclusion>-->
-    <!--                </exclusions>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Kotlin 支持 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                <artifactId>kotlin-stdlib-jdk8</artifactId>-->
-    <!--                <version>${kotlin.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                <artifactId>kotlin-compiler</artifactId>-->
-    <!--                <version>${kotlin.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                <artifactId>kotlin-test-junit</artifactId>-->
-    <!--                <version>${kotlin.version}</version>-->
-    <!--                <scope>test</scope>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                <artifactId>kotlin-maven-allopen</artifactId>-->
-    <!--                <version>${kotlin.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                <artifactId>kotlin-maven-noarg</artifactId>-->
-    <!--                <version>${kotlin.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; FastDFS 分布式文件系统 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.github.tobato</groupId>-->
-    <!--                <artifactId>fastdfs-client</artifactId>-->
-    <!--                <version>${tobato.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Mybatis 依赖配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.mybatis.spring.boot</groupId>-->
-    <!--                <artifactId>mybatis-spring-boot-starter</artifactId>-->
-    <!--                <version>${spring-boot.mybatis.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Druid &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.alibaba</groupId>-->
-    <!--                <artifactId>druid-spring-boot-starter</artifactId>-->
-    <!--                <version>${druid.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Mybatis-plus 依赖配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.baomidou</groupId>-->
-    <!--                <artifactId>mybatis-plus-boot-starter</artifactId>-->
-    <!--                <version>${spring-boot.mybatis-plus.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.baomidou</groupId>-->
-    <!--                <artifactId>mybatis-plus-annotation</artifactId>-->
-    <!--                <version>3.4.3.4</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; dynamic-datasource 依赖配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.baomidou</groupId>-->
-    <!--                <artifactId>dynamic-datasource-spring-boot-starter</artifactId>-->
-    <!--                <version>${spring-boot.dynamic-datasource.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Swagger 依赖配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.swagger</groupId>-->
-    <!--                <artifactId>swagger-models</artifactId>-->
-    <!--                <version>${swagger.core.version}</version>-->
-    <!--            </dependency>-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.swagger</groupId>-->
-    <!--                <artifactId>swagger-annotations</artifactId>-->
-    <!--                <version>${swagger.core.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; easy-es 依赖配置 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>cn.easy-es</groupId>-->
-    <!--                <artifactId>easy-es-boot-starter</artifactId>-->
-    <!--                <version>${easy-es.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.google.guava</groupId>-->
-    <!--                <artifactId>guava</artifactId>-->
-    <!--                <version>${google-guava.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 验证码 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.github.penggle</groupId>-->
-    <!--                <artifactId>kaptcha</artifactId>-->
-    <!--                <version>${kaptcha.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; pagehelper 分页插件 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.github.pagehelper</groupId>-->
-    <!--                <artifactId>pagehelper-spring-boot-starter</artifactId>-->
-    <!--                <version>${pagehelper.boot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; io常用工具类 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>commons-io</groupId>-->
-    <!--                <artifactId>commons-io</artifactId>-->
-    <!--                <version>${commons.io.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; email常用工具类 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.apache.commons</groupId>-->
-    <!--                <artifactId>commons-email</artifactId>-->
-    <!--                <version>${commons.email.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; excel工具 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.apache.poi</groupId>-->
-    <!--                <artifactId>poi-ooxml</artifactId>-->
-    <!--                <version>${poi.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 文件上传工具类 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>commons-fileupload</groupId>-->
-    <!--                <artifactId>commons-fileupload</artifactId>-->
-    <!--                <version>${commons.fileupload.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 代码生成使用模板 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.apache.velocity</groupId>-->
-    <!--                <artifactId>velocity-engine-core</artifactId>-->
-    <!--                <version>${velocity.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; Collection 增强Java集合框架 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>commons-collections</groupId>-->
-    <!--                <artifactId>commons-collections</artifactId>-->
-    <!--                <version>${commons-collections.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; JSON 解析器和生成器 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.alibaba.fastjson2</groupId>-->
-    <!--                <artifactId>fastjson2</artifactId>-->
-    <!--                <version>${fastjson2.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.alibaba</groupId>-->
-    <!--                <artifactId>fastjson</artifactId>-->
-    <!--                <version>${fastjson.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; JWT &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.jsonwebtoken</groupId>-->
-    <!--                <artifactId>jjwt</artifactId>-->
-    <!--                <version>${jjwt.version}</version>-->
-    <!--            </dependency>-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.jsonwebtoken</groupId>-->
-    <!--                <artifactId>jjwt-jackson</artifactId>-->
-    <!--                <version>${jjwt-jackson.version}</version>-->
-    <!--            </dependency>-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.jsonwebtoken</groupId>-->
-    <!--                <artifactId>jjwt-impl</artifactId>-->
-    <!--                <version>${jjwt-impl.version}</version>-->
-    <!--            </dependency>-->
-    <!--            <dependency>-->
-    <!--                <groupId>io.jsonwebtoken</groupId>-->
-    <!--                <artifactId>jjwt-api</artifactId>-->
-    <!--                <version>${jjwt-api.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; commons-beanutils &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>commons-beanutils</groupId>-->
-    <!--                <artifactId>commons-beanutils</artifactId>-->
-    <!--                <version>${commons-beanutils.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; hutool &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>cn.hutool</groupId>-->
-    <!--                <artifactId>hutool-all</artifactId>-->
-    <!--                <version>${hutool.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 线程传递值 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.alibaba</groupId>-->
-    <!--                <artifactId>transmittable-thread-local</artifactId>-->
-    <!--                <version>${transmittable-thread-local.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; influxdb &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.influxdb</groupId>-->
-    <!--                <artifactId>influxdb-java</artifactId>-->
-    <!--                <version>${influxdb.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; commons-lang &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>commons-lang</groupId>-->
-    <!--                <artifactId>commons-lang</artifactId>-->
-    <!--                <version>${commons-lang.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>org.jxls</groupId>-->
-    <!--                <artifactId>jxls</artifactId>-->
-    <!--                <version>${jxls.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>javax.persistence</groupId>-->
-    <!--                <artifactId>persistence-api</artifactId>-->
-    <!--                <version>${javax.persistence.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 核心模块 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-starter-cloud</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>common-core</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-link-data</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-link-server</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>common</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-cache</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-influxdb-core</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-log2es</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-oss</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-oss-manager</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-api</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-server</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-db</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-mqtt-annotations</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-mqtt-common</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-mqtt-core</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-mqtt-message</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-stream-annotations</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-stream-message</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.qhiot</groupId>-->
-    <!--                <artifactId>qhiot-transport-stream-processor</artifactId>-->
-    <!--                <version>${qhiot.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 接口模块 &ndash;&gt;-->
-
-    <!--            &lt;!&ndash; 安全模块 &ndash;&gt;-->
-
-    <!--            &lt;!&ndash; 权限范围 &ndash;&gt;-->
-
-    <!--            &lt;!&ndash; 多数据源 &ndash;&gt;-->
-
-    <!--            &lt;!&ndash; 日志记录 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>org.slf4j</groupId>-->
-    <!--                <artifactId>slf4j-api</artifactId>-->
-    <!--                <version>${slf4j.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.lmax</groupId>-->
-    <!--                <artifactId>disruptor</artifactId>-->
-    <!--                <version>${disruptor.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            &lt;!&ndash; 缓存服务 &ndash;&gt;-->
-
-    <!--            &lt;!&ndash; 系统接口 &ndash;&gt;-->
-
-    <!--            &lt;!&ndash; 第三方 &ndash;&gt;-->
-    <!--            <dependency>-->
-    <!--                <groupId>com.aliyun</groupId>-->
-    <!--                <artifactId>aliyun-java-sdk-core</artifactId>-->
-    <!--                <version>${aliyun.sdk.java.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.aliyun</groupId>-->
-    <!--                <artifactId>aliyun-java-sdk-dysmsapi</artifactId>-->
-    <!--                <version>${aliyun.sdk.dysmsapi.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--            <dependency>-->
-    <!--                <groupId>com.aliyun.oss</groupId>-->
-    <!--                <artifactId>aliyun-sdk-oss</artifactId>-->
-    <!--                <version>${aliyun.sdk.oss.version}</version>-->
-    <!--            </dependency>-->
-
-    <!--        </dependencies>-->
-    <!--    </dependencyManagement>-->
-
-    <!--    <dependencies>-->
-    <!--        &lt;!&ndash; bootstrap 启动器 &ndash;&gt;-->
-    <!--        <dependency>-->
-    <!--            <groupId>org.springframework.cloud</groupId>-->
-    <!--            <artifactId>spring-cloud-starter-bootstrap</artifactId>-->
-    <!--        </dependency>-->
-
-    <!--        <dependency>-->
-    <!--            <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--            <artifactId>kotlin-stdlib-jdk8</artifactId>-->
-    <!--        </dependency>-->
-
-    <!--        <dependency>-->
-    <!--            <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--            <artifactId>kotlin-compiler</artifactId>-->
-    <!--        </dependency>-->
-
-    <!--        &lt;!&ndash; 单元测试 &ndash;&gt;-->
-    <!--        <dependency>-->
-    <!--            <groupId>org.springframework.cloud</groupId>-->
-    <!--            <artifactId>spring-cloud-test-support</artifactId>-->
-    <!--            <scope>test</scope>-->
-    <!--        </dependency>-->
-
-    <!--        <dependency>-->
-    <!--            <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--            <artifactId>kotlin-test-junit</artifactId>-->
-    <!--            <scope>test</scope>-->
-    <!--        </dependency>-->
-
-    <!--        <dependency>-->
-    <!--            <groupId>org.springframework.boot</groupId>-->
-    <!--            <artifactId>spring-boot-starter-validation</artifactId>-->
-    <!--        </dependency>-->
-
-    <!--    </dependencies>-->
-
-    <!--    <build>-->
-    <!--        <plugins>-->
-    <!--            <plugin>-->
-    <!--                <artifactId>kotlin-maven-plugin</artifactId>-->
-    <!--                <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                <version>${kotlin.version}</version>-->
-    <!--                <executions>-->
-    <!--                    <execution>-->
-    <!--                        <id>compile</id>-->
-    <!--                        <goals>-->
-    <!--                            <goal>compile</goal>-->
-    <!--                        </goals>-->
-    <!--                        <configuration>-->
-    <!--                            <sourceDirs>-->
-    <!--                                <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>-->
-    <!--                                <sourceDir>${project.basedir}/src/main/java</sourceDir>-->
-    <!--                            </sourceDirs>-->
-    <!--                        </configuration>-->
-    <!--                    </execution>-->
-    <!--                    <execution>-->
-    <!--                        <id>test-compile</id>-->
-    <!--                        <goals>-->
-    <!--                            <goal>test-compile</goal>-->
-    <!--                        </goals>-->
-    <!--                        <configuration>-->
-    <!--                            <sourceDirs>-->
-    <!--                                <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>-->
-    <!--                                <sourceDir>${project.basedir}/src/test/java</sourceDir>-->
-    <!--                            </sourceDirs>-->
-    <!--                        </configuration>-->
-    <!--                    </execution>-->
-    <!--                </executions>-->
-    <!--                <configuration>-->
-    <!--                    <jvmTarget>1.8</jvmTarget>-->
-    <!--                    <args>-->
-    <!--                        <arg>-Xjsr305=strict</arg>-->
-    <!--                    </args>-->
-    <!--                    &lt;!&ndash;                    <compilerPlugins>&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        <plugin>spring</plugin>&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        &lt;!&ndash; 这里kotlin官方插件,为被注解的指定类添加无参构造方法 &ndash;&gt;&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        <plugin>no-arg</plugin>&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                    </compilerPlugins>&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                    <pluginOptions>&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        &lt;!&ndash; 这里!配置NoArg注解 &ndash;&gt;&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        <option>no-arg:annotation=xx.xx.xx.xx.NoArg</option>&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        &lt;!&ndash; 在合成的构造函数中调用实例初始化器 &ndash;&gt;&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                        &lt;!&ndash; <option>no-arg:invokeInitializers=true</option> &ndash;&gt;&ndash;&gt;-->
-    <!--                    &lt;!&ndash;                    </pluginOptions>&ndash;&gt;-->
-    <!--                </configuration>-->
-    <!--                <dependencies>-->
-    <!--                    <dependency>-->
-    <!--                        <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                        <artifactId>kotlin-maven-allopen</artifactId>-->
-    <!--                        <version>${kotlin.version}</version>-->
-    <!--                    </dependency>-->
-    <!--                    &lt;!&ndash; 这里!! 引入NoArg解决方案 &ndash;&gt;-->
-    <!--                    <dependency>-->
-    <!--                        <groupId>org.jetbrains.kotlin</groupId>-->
-    <!--                        <artifactId>kotlin-maven-noarg</artifactId>-->
-    <!--                        <version>${kotlin.version}</version>-->
-    <!--                    </dependency>-->
-    <!--                </dependencies>-->
-    <!--            </plugin>-->
-    <!--            <plugin>-->
-    <!--                <groupId>org.apache.maven.plugins</groupId>-->
-    <!--                <artifactId>maven-compiler-plugin</artifactId>-->
-    <!--                <configuration>-->
-    <!--                    <source>${java.version}</source>-->
-    <!--                    <target>${java.version}</target>-->
-    <!--                    <encoding>${project.build.sourceEncoding}</encoding>-->
-    <!--                </configuration>-->
-    <!--                <executions>-->
-    <!--                    &lt;!&ndash; Replacing default-compile as it is treated specially by maven &ndash;&gt;-->
-    <!--                    <execution>-->
-    <!--                        <id>default-compile</id>-->
-    <!--                        <phase>none</phase>-->
-    <!--                    </execution>-->
-    <!--                    &lt;!&ndash; Replacing default-testCompile as it is treated specially by maven &ndash;&gt;-->
-    <!--                    <execution>-->
-    <!--                        <id>default-testCompile</id>-->
-    <!--                        <phase>none</phase>-->
-    <!--                    </execution>-->
-    <!--                    <execution>-->
-    <!--                        <id>java-compile</id>-->
-    <!--                        <phase>compile</phase>-->
-    <!--                        <goals>-->
-    <!--                            <goal>compile</goal>-->
-    <!--                        </goals>-->
-    <!--                    </execution>-->
-    <!--                    <execution>-->
-    <!--                        <id>java-test-compile</id>-->
-    <!--                        <phase>test-compile</phase>-->
-    <!--                        <goals>-->
-    <!--                            <goal>testCompile</goal>-->
-    <!--                        </goals>-->
-    <!--                    </execution>-->
-    <!--                </executions>-->
-    <!--            </plugin>-->
-    <!--            <plugin>-->
-    <!--                <groupId>org.apache.maven.plugins</groupId>-->
-    <!--                <artifactId>maven-resources-plugin</artifactId>-->
-    <!--                <configuration>-->
-    <!--                    <delimiters>@</delimiters>-->
-    <!--                    <useDefaultDelimiters>false</useDefaultDelimiters>-->
-    <!--                </configuration>-->
-    <!--            </plugin>-->
-    <!--            &lt;!&ndash; 打包跳过测试 &ndash;&gt;-->
-    <!--            <plugin>-->
-    <!--                <groupId>org.apache.maven.plugins</groupId>-->
-    <!--                <artifactId>maven-surefire-plugin</artifactId>-->
-    <!--                <configuration>-->
-    <!--                    <skipTests>true</skipTests>-->
-    <!--                </configuration>-->
-    <!--            </plugin>-->
-    <!--        </plugins>-->
-    <!--        <resources>-->
-    <!--            <resource>-->
-    <!--                <directory>src/main/java</directory>-->
-    <!--                <includes>-->
-    <!--                    <include>**/*.xml</include>-->
-    <!--                </includes>-->
-    <!--                <filtering>false</filtering>-->
-    <!--            </resource>-->
-    <!--            <resource>-->
-    <!--                <directory>src/main/resources</directory>-->
-    <!--                <filtering>true</filtering>-->
-    <!--            </resource>-->
-    <!--        </resources>-->
-    <!--    </build>-->
-
-    <!--    <repositories>-->
-    <!--        <repository>-->
-    <!--            <id>maven_aliyun</id>-->
-    <!--            <name>maven_aliyun</name>-->
-    <!--            &lt;!&ndash;            <url>https://maven.aliyun.com/nexus/content/groups/public/</url>&ndash;&gt;-->
-    <!--            <url>https://maven.aliyun.com/repository/public</url>-->
-    <!--        </repository>-->
-    <!--        <repository>-->
-    <!--            <id>qh</id>-->
-    <!--            <name>QH Repository</name>-->
-    <!--            <url>http://116.62.67.134:9000/nexus/content/groups/public/</url>-->
-    <!--        </repository>-->
-    <!--    </repositories>-->
-
-    <!--    &lt;!&ndash; 环境 &ndash;&gt;-->
-    <!--    <profiles>-->
-    <!--        &lt;!&ndash; 开发 &ndash;&gt;-->
-    <!--        <profile>-->
-    <!--            <id>dev</id>-->
-    <!--            <activation>-->
-    <!--                &lt;!&ndash;默认激活配置&ndash;&gt;-->
-    <!--                <activeByDefault>true</activeByDefault>-->
-    <!--            </activation>-->
-    <!--            <properties>-->
-    <!--                &lt;!&ndash;当前环境&ndash;&gt;-->
-    <!--                <profile.active>dev</profile.active>-->
-    <!--                &lt;!&ndash;Nacos&ndash;&gt;-->
-    <!--                <nacos-server.ip>192.168.1.150</nacos-server.ip>-->
-    <!--                <nacos-server.username>nacos</nacos-server.username>-->
-    <!--                <nacos-server.password>nacos</nacos-server.password>-->
-    <!--                <config.file-prefix>qh-link</config.file-prefix>-->
-    <!--                <config.file-extension>yaml</config.file-extension>-->
-    <!--                <config.namespace></config.namespace>-->
-    <!--                <config.group>DEFAULT_GROUP</config.group>-->
-    <!--                <config.server-addr>${nacos-server.ip}:8848</config.server-addr>-->
-    <!--                <discovery.server-addr>${nacos-server.ip}:8848</discovery.server-addr>-->
-    <!--                &lt;!&ndash;zipkin&ndash;&gt;-->
-    <!--                <zipkin.base-url>http://192.168.1.150:9411</zipkin.base-url>-->
-    <!--            </properties>-->
-    <!--        </profile>-->
-    <!--        &lt;!&ndash; 测试 &ndash;&gt;-->
-    <!--        <profile>-->
-    <!--            <id>test</id>-->
-    <!--            <properties>-->
-    <!--                &lt;!&ndash;当前环境&ndash;&gt;-->
-    <!--                <profile.active>test</profile.active>-->
-    <!--                &lt;!&ndash;Nacos&ndash;&gt;-->
-    <!--                <nacos-server.ip>192.168.1.150</nacos-server.ip>-->
-    <!--                <nacos-server.username>nacos</nacos-server.username>-->
-    <!--                <nacos-server.password>nacos</nacos-server.password>-->
-    <!--                <config.server-addr>${nacos-server.ip}:8848</config.server-addr>-->
-    <!--                <config.file-prefix>qh-link</config.file-prefix>-->
-    <!--                <config.file-extension>yaml</config.file-extension>-->
-    <!--                <config.namespace></config.namespace>-->
-    <!--                <config.group>DEFAULT_GROUP</config.group>-->
-    <!--                <discovery.server-addr>${nacos-server.ip}:8848</discovery.server-addr>-->
-    <!--                &lt;!&ndash;zipkin&ndash;&gt;-->
-    <!--                <zipkin.base-url>http://192.168.1.150:9411</zipkin.base-url>-->
-    <!--            </properties>-->
-    <!--        </profile>-->
-    <!--        &lt;!&ndash; 生产 &ndash;&gt;-->
-    <!--        <profile>-->
-    <!--            <id>prod</id>-->
-    <!--            <properties>-->
-    <!--                &lt;!&ndash;当前环境,生产环境为空&ndash;&gt;-->
-    <!--                <profile.active>prod</profile.active>-->
-    <!--                &lt;!&ndash;Nacos配置&ndash;&gt;-->
-    <!--                &lt;!&ndash;服务ip&ndash;&gt;-->
-    <!--                <nacos-server.ip>192.168.1.150</nacos-server.ip>-->
-    <!--                &lt;!&ndash;服务用户名&ndash;&gt;-->
-    <!--                <nacos-server.username>nacos</nacos-server.username>-->
-    <!--                &lt;!&ndash;服务密码&ndash;&gt;-->
-    <!--                <nacos-server.password>nacos</nacos-server.password>-->
-    <!--                &lt;!&ndash;配置文件名&ndash;&gt;-->
-    <!--                <config.file-prefix>qh-link</config.file-prefix>-->
-    <!--                &lt;!&ndash;配置文件格式&ndash;&gt;-->
-    <!--                <config.file-extension>yaml</config.file-extension>-->
-    <!--                &lt;!&ndash;配置中心地址&ndash;&gt;-->
-    <!--                <config.server-addr>${nacos-server.ip}:8848</config.server-addr>-->
-    <!--                &lt;!&ndash;配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空&ndash;&gt;-->
-    <!--                <config.namespace></config.namespace>-->
-    <!--                &lt;!&ndash;配置分组名称&ndash;&gt;-->
-    <!--                <config.group>DEFAULT_GROUP</config.group>-->
-    <!--                &lt;!&ndash;服务发现地址&ndash;&gt;-->
-    <!--                <discovery.server-addr>${nacos-server.ip}:8848</discovery.server-addr>-->
-    <!--                &lt;!&ndash;zipkin&ndash;&gt;-->
-    <!--                <zipkin.base-url>http://192.168.1.150:9411</zipkin.base-url>-->
-    <!--            </properties>-->
-    <!--        </profile>-->
-    <!--    </profiles>-->
-
-    <!--</project>-->

+ 4 - 8
qhiot-link-data-server/qhiot-link-data/pom.xml

@@ -13,13 +13,10 @@
     <dependencies>
 
         <dependency>
-            <groupId>com.qhiot</groupId>
-            <artifactId>qhiot-common-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.qhiot</groupId>
-            <artifactId>qhiot-link-api</artifactId>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
         </dependency>
+
         <!-- Mybatis plus -->
         <dependency>
             <groupId>com.baomidou</groupId>
@@ -30,13 +27,12 @@
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-validation</artifactId>
         </dependency>
+
         <dependency>
             <groupId>io.swagger</groupId>
             <artifactId>swagger-annotations</artifactId>
         </dependency>
 
-
     </dependencies>
 
-
 </project>

+ 6 - 22
qhiot-link-data-server/qhiot-link-server/pom.xml

@@ -2,6 +2,7 @@
 <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>com.qhiot</groupId>
         <artifactId>qhiot-link-data-server</artifactId>
@@ -10,7 +11,9 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>qhiot-link-server</artifactId>
+
     <dependencies>
+
         <dependency>
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-boot-starter-web</artifactId>
@@ -45,35 +48,16 @@
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-common-redis</artifactId>
         </dependency>
-        <!--swagger        -->
+
         <dependency>
             <groupId>io.springfox</groupId>
             <artifactId>springfox-swagger2</artifactId>
-            <version>3.0.0</version>
         </dependency>
-        <!--swagger-ui.html模式        -->
+
         <dependency>
             <groupId>io.springfox</groupId>
             <artifactId>springfox-swagger-ui</artifactId>
-            <version>3.0.0</version>
-        </dependency>
-        <dependency>
-            <groupId>com.github.xiaoymin</groupId>
-            <artifactId>knife4j-spring-boot-starter</artifactId>
-            <version>3.0.2</version>
-        </dependency>
-        <dependency>
-            <groupId>com.google.guava</groupId>
-            <artifactId>guava</artifactId>
-            <version>25.1-jre</version>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-actuator</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-actuator-autoconfigure</artifactId>
         </dependency>
+
     </dependencies>
 </project>

+ 4 - 17
qhiot-link-data-server/qhiot-link-start/pom.xml

@@ -12,27 +12,14 @@
     <artifactId>qhiot-link-start</artifactId>
     <dependencies>
 
-        <!-- 服务发现 -->
         <dependency>
-            <groupId>com.alibaba.cloud</groupId>
-            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
-        </dependency>
-
-        <!-- 配置管理 -->
-        <dependency>
-            <groupId>com.alibaba.cloud</groupId>
-            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
-        </dependency>
-
-        <!-- Spring Cloud Stream, 用于kfk消息发送-->
-        <dependency>
-            <groupId>org.springframework.cloud</groupId>
-            <artifactId>spring-cloud-stream</artifactId>
+            <groupId>com.qhiot</groupId>
+            <artifactId>qhiot-cloud-starter</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>org.springframework.cloud</groupId>
-            <artifactId>spring-cloud-stream-binder-kafka</artifactId>
+            <groupId>com.qhiot</groupId>
+            <artifactId>qhiot-boot-starter-web</artifactId>
         </dependency>
 
         <dependency>

+ 1 - 16
qhiot-link-modules/common-core/pom.xml

@@ -11,11 +11,6 @@
     <artifactId>common-core</artifactId>
 
     <dependencies>
-<!--        <dependency>-->
-<!--            <groupId>org.springframework.boot</groupId>-->
-<!--            <artifactId>spring-boot-starter-web</artifactId>-->
-<!--            <scope>provided</scope>-->
-<!--        </dependency>-->
 
         <dependency>
             <groupId>org.springframework</groupId>
@@ -24,22 +19,11 @@
         </dependency>
 
         <dependency>
-            <groupId>org.apache.tomcat.embed</groupId>
-            <artifactId>tomcat-embed-core</artifactId>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>com.alibaba</groupId>
-            <artifactId>fastjson</artifactId>
-        </dependency>
-
-        <dependency>
             <groupId>org.projectlombok</groupId>
             <artifactId>lombok</artifactId>
         </dependency>
@@ -48,6 +32,7 @@
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>
         </dependency>
+
         <dependency>
             <groupId>cn.hutool</groupId>
             <artifactId>hutool-all</artifactId>

+ 9 - 5
qhiot-link-transport-server/qhiot-transport-server/pom.xml

@@ -13,27 +13,31 @@
     <artifactId>qhiot-transport-server</artifactId>
 
     <dependencies>
+
+        <dependency>
+            <groupId>com.qhiot</groupId>
+            <artifactId>qhiot-common-redis</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-link-api</artifactId>
         </dependency>
+
         <dependency>
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-transport-db</artifactId>
         </dependency>
+
         <dependency>
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-transport-mqtt-core</artifactId>
         </dependency>
+
         <dependency>
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-transport-stream-message</artifactId>
         </dependency>
-
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-data-redis</artifactId>
-        </dependency>
     </dependencies>
 
 </project>

+ 6 - 0
qhiot-link-transport-server/qhiot-transport-stream-message/pom.xml

@@ -12,10 +12,16 @@
     <artifactId>qhiot-transport-stream-message</artifactId>
 
     <dependencies>
+
         <dependency>
             <groupId>com.qhiot</groupId>
             <artifactId>qhiot-common-stream</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+        </dependency>
+
     </dependencies>
 </project>

+ 0 - 5
qhiot-web/pom.xml

@@ -28,11 +28,6 @@
         <!--   QH Modules  -->
         <dependency>
             <groupId>com.qhiot</groupId>
-            <artifactId>qhiot-common-core</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>com.qhiot</groupId>
             <artifactId>qhiot-transport-server</artifactId>
         </dependency>