浏览代码

Merge remote-tracking branch 'origin/master'

zhou-hao 5 年之前
父节点
当前提交
20a397a2ff
共有 32 个文件被更改,包括 63 次插入34 次删除
  1. 1 1
      jetlinks-components/common-component/pom.xml
  2. 9 0
      jetlinks-components/common-component/src/main/java/org/jetlinks/community/configuration/CommonConfiguration.java
  3. 1 1
      jetlinks-components/dashboard-component/pom.xml
  4. 1 1
      jetlinks-components/elasticsearch-component/pom.xml
  5. 1 1
      jetlinks-components/gateway-component/pom.xml
  6. 1 1
      jetlinks-components/io-component/pom.xml
  7. 1 1
      jetlinks-components/logging-component/pom.xml
  8. 1 1
      jetlinks-components/network-component/mqtt-component/pom.xml
  9. 1 1
      jetlinks-components/network-component/network-core/pom.xml
  10. 1 1
      jetlinks-components/network-component/pom.xml
  11. 1 1
      jetlinks-components/network-component/tcp-component/pom.xml
  12. 23 3
      jetlinks-components/network-component/tcp-component/src/main/java/org/jetlinks/community/network/tcp/server/VertxTcpServer.java
  13. 1 1
      jetlinks-components/notify-component/notify-core/pom.xml
  14. 1 1
      jetlinks-components/notify-component/notify-dingtalk/pom.xml
  15. 1 1
      jetlinks-components/notify-component/notify-email/pom.xml
  16. 1 1
      jetlinks-components/notify-component/notify-sms/pom.xml
  17. 1 1
      jetlinks-components/notify-component/notify-voice/pom.xml
  18. 1 1
      jetlinks-components/notify-component/notify-wechat/pom.xml
  19. 1 1
      jetlinks-components/notify-component/pom.xml
  20. 1 1
      jetlinks-components/pom.xml
  21. 1 1
      jetlinks-components/rule-engine-component/pom.xml
  22. 1 1
      jetlinks-components/timeseries-component/pom.xml
  23. 1 1
      jetlinks-manager/authentication-manager/pom.xml
  24. 1 1
      jetlinks-manager/device-manager/pom.xml
  25. 1 1
      jetlinks-manager/logging-manager/pom.xml
  26. 1 1
      jetlinks-manager/network-manager/pom.xml
  27. 1 1
      jetlinks-manager/notify-manager/pom.xml
  28. 1 1
      jetlinks-manager/pom.xml
  29. 1 1
      jetlinks-manager/rule-engine-manager/pom.xml
  30. 1 1
      jetlinks-manager/visualization-manager/pom.xml
  31. 1 1
      jetlinks-standalone/pom.xml
  32. 2 2
      pom.xml

+ 1 - 1
jetlinks-components/common-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 9 - 0
jetlinks-components/common-component/src/main/java/org/jetlinks/community/configuration/CommonConfiguration.java

@@ -6,6 +6,7 @@ import io.netty.buffer.Unpooled;
 import org.apache.commons.beanutils.BeanUtilsBean;
 import org.apache.commons.beanutils.BeanUtilsBean;
 import org.apache.commons.beanutils.Converter;
 import org.apache.commons.beanutils.Converter;
 import org.springframework.context.annotation.Configuration;
 import org.springframework.context.annotation.Configuration;
+import org.springframework.http.MediaType;
 
 
 @Configuration
 @Configuration
 public class CommonConfiguration {
 public class CommonConfiguration {
@@ -26,6 +27,14 @@ public class CommonConfiguration {
                 return convert(aClass, JSON.toJSONBytes(o));
                 return convert(aClass, JSON.toJSONBytes(o));
             }
             }
         }, ByteBuf.class);
         }, ByteBuf.class);
+
+        BeanUtilsBean.getInstance().getConvertUtils().register(new Converter() {
+            @Override
+            public <T> T convert(Class<T> aClass, Object o) {
+                return (T) MediaType.valueOf(String.valueOf(o));
+            }
+        }, MediaType.class);
+
     }
     }
 
 
 }
 }

+ 1 - 1
jetlinks-components/dashboard-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/elasticsearch-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/gateway-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/io-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
 
 
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/logging-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/network-component/mqtt-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>network-component</artifactId>
         <artifactId>network-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/network-component/network-core/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>network-component</artifactId>
         <artifactId>network-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/network-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <packaging>pom</packaging>
     <packaging>pom</packaging>

+ 1 - 1
jetlinks-components/network-component/tcp-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>network-component</artifactId>
         <artifactId>network-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 23 - 3
jetlinks-components/network-component/tcp-component/src/main/java/org/jetlinks/community/network/tcp/server/VertxTcpServer.java

@@ -7,11 +7,16 @@ import lombok.Setter;
 import lombok.extern.slf4j.Slf4j;
 import lombok.extern.slf4j.Slf4j;
 import org.jetlinks.community.network.DefaultNetworkType;
 import org.jetlinks.community.network.DefaultNetworkType;
 import org.jetlinks.community.network.NetworkType;
 import org.jetlinks.community.network.NetworkType;
+import org.jetlinks.community.network.tcp.client.TcpClient;
 import org.jetlinks.community.network.tcp.client.VertxTcpClient;
 import org.jetlinks.community.network.tcp.client.VertxTcpClient;
 import org.jetlinks.community.network.tcp.parser.PayloadParser;
 import org.jetlinks.community.network.tcp.parser.PayloadParser;
+import reactor.core.publisher.EmitterProcessor;
+import reactor.core.publisher.Flux;
+import reactor.core.publisher.FluxSink;
 
 
 import java.time.Duration;
 import java.time.Duration;
 import java.util.Collection;
 import java.util.Collection;
+import java.util.function.Function;
 import java.util.function.Supplier;
 import java.util.function.Supplier;
 
 
 /**
 /**
@@ -19,7 +24,7 @@ import java.util.function.Supplier;
  * @since 1.0
  * @since 1.0
  **/
  **/
 @Slf4j
 @Slf4j
-public class VertxTcpServer extends AbstractTcpServer implements TcpServer {
+public class VertxTcpServer implements TcpServer {
 
 
     Collection<NetServer> tcpServers;
     Collection<NetServer> tcpServers;
 
 
@@ -29,12 +34,22 @@ public class VertxTcpServer extends AbstractTcpServer implements TcpServer {
     private long keepAliveTimeout = Duration.ofMinutes(10).toMillis();
     private long keepAliveTimeout = Duration.ofMinutes(10).toMillis();
 
 
     @Getter
     @Getter
-    private String id;
+    private final String id;
+
+    private final EmitterProcessor<TcpClient> processor = EmitterProcessor.create(false);
+
+    private final FluxSink<TcpClient> sink = processor.sink(FluxSink.OverflowStrategy.BUFFER);
 
 
     public VertxTcpServer(String id) {
     public VertxTcpServer(String id) {
         this.id = id;
         this.id = id;
     }
     }
 
 
+    @Override
+    public Flux<TcpClient> handleConnection() {
+        return processor
+            .map(Function.identity());
+    }
+
     private void execute(Runnable runnable) {
     private void execute(Runnable runnable) {
         try {
         try {
             runnable.run();
             runnable.run();
@@ -61,6 +76,11 @@ public class VertxTcpServer extends AbstractTcpServer implements TcpServer {
 
 
 
 
     protected void acceptTcpConnection(NetSocket socket) {
     protected void acceptTcpConnection(NetSocket socket) {
+        if (!processor.hasDownstreams()) {
+            log.warn("not handler for tcp client[{}]", socket.remoteAddress());
+            socket.close();
+            return;
+        }
         VertxTcpClient client = new VertxTcpClient(id + "_" + socket.remoteAddress());
         VertxTcpClient client = new VertxTcpClient(id + "_" + socket.remoteAddress());
         client.setKeepAliveTimeoutMs(keepAliveTimeout);
         client.setKeepAliveTimeoutMs(keepAliveTimeout);
         try {
         try {
@@ -72,7 +92,7 @@ public class VertxTcpServer extends AbstractTcpServer implements TcpServer {
             });
             });
             client.setRecordParser(parserSupplier.get());
             client.setRecordParser(parserSupplier.get());
             client.setSocket(socket);
             client.setSocket(socket);
-            received(client);
+            sink.next(client);
             log.debug("accept tcp client [{}] connection", socket.remoteAddress());
             log.debug("accept tcp client [{}] connection", socket.remoteAddress());
         } catch (Exception e) {
         } catch (Exception e) {
             log.error("create tcp server client error", e);
             log.error("create tcp server client error", e);

+ 1 - 1
jetlinks-components/notify-component/notify-core/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>notify-component</artifactId>
         <artifactId>notify-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/notify-component/notify-dingtalk/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>notify-component</artifactId>
         <artifactId>notify-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/notify-component/notify-email/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>notify-component</artifactId>
         <artifactId>notify-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/notify-component/notify-sms/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>notify-component</artifactId>
         <artifactId>notify-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/notify-component/notify-voice/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>notify-component</artifactId>
         <artifactId>notify-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/notify-component/notify-wechat/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>notify-component</artifactId>
         <artifactId>notify-component</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>
 
 

+ 1 - 1
jetlinks-components/notify-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-community</artifactId>
         <artifactId>jetlinks-community</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/rule-engine-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-components/timeseries-component/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-components</artifactId>
         <artifactId>jetlinks-components</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-manager/authentication-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <artifactId>authentication-manager</artifactId>
     <artifactId>authentication-manager</artifactId>

+ 1 - 1
jetlinks-manager/device-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <artifactId>device-manager</artifactId>
     <artifactId>device-manager</artifactId>

+ 1 - 1
jetlinks-manager/logging-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <artifactId>logging-manager</artifactId>
     <artifactId>logging-manager</artifactId>
 
 

+ 1 - 1
jetlinks-manager/network-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <artifactId>network-manager</artifactId>
     <artifactId>network-manager</artifactId>

+ 1 - 1
jetlinks-manager/notify-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <artifactId>notify-manager</artifactId>
     <artifactId>notify-manager</artifactId>

+ 1 - 1
jetlinks-manager/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-community</artifactId>
         <artifactId>jetlinks-community</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
     </parent>
     </parent>
     <packaging>pom</packaging>
     <packaging>pom</packaging>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 1 - 1
jetlinks-manager/rule-engine-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <artifactId>rule-engine-manager</artifactId>
     <artifactId>rule-engine-manager</artifactId>

+ 1 - 1
jetlinks-manager/visualization-manager/pom.xml

@@ -7,7 +7,7 @@
     <parent>
     <parent>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
         <artifactId>jetlinks-manager</artifactId>
         <artifactId>jetlinks-manager</artifactId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <artifactId>visualization-manager</artifactId>
     <artifactId>visualization-manager</artifactId>

+ 1 - 1
jetlinks-standalone/pom.xml

@@ -5,7 +5,7 @@
     <parent>
     <parent>
         <artifactId>jetlinks-community</artifactId>
         <artifactId>jetlinks-community</artifactId>
         <groupId>org.jetlinks.community</groupId>
         <groupId>org.jetlinks.community</groupId>
-        <version>1.2.0</version>
+        <version>1.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
         <relativePath>../pom.xml</relativePath>
     </parent>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <modelVersion>4.0.0</modelVersion>

+ 2 - 2
pom.xml

@@ -6,7 +6,7 @@
 
 
     <groupId>org.jetlinks.community</groupId>
     <groupId>org.jetlinks.community</groupId>
     <artifactId>jetlinks-community</artifactId>
     <artifactId>jetlinks-community</artifactId>
-    <version>1.2.0</version>
+    <version>1.3.0-SNAPSHOT</version>
     <modules>
     <modules>
         <module>jetlinks-components</module>
         <module>jetlinks-components</module>
         <module>jetlinks-manager</module>
         <module>jetlinks-manager</module>
@@ -22,7 +22,7 @@
         <hsweb.framework.version>4.0.3</hsweb.framework.version>
         <hsweb.framework.version>4.0.3</hsweb.framework.version>
         <easyorm.version>4.0.3</easyorm.version>
         <easyorm.version>4.0.3</easyorm.version>
         <hsweb.expands.version>3.0.2</hsweb.expands.version>
         <hsweb.expands.version>3.0.2</hsweb.expands.version>
-        <jetlinks.version>1.0.3</jetlinks.version>
+        <jetlinks.version>1.0.4-SNAPSHOT</jetlinks.version>
         <r2dbc.version>Arabba-SR3</r2dbc.version>
         <r2dbc.version>Arabba-SR3</r2dbc.version>
         <vertx.version>3.8.5</vertx.version>
         <vertx.version>3.8.5</vertx.version>
         <netty.version>4.1.46.Final</netty.version>
         <netty.version>4.1.46.Final</netty.version>