Merge branch 'master' into 1.3.1-JDK24

# Conflicts:
#	wu-lazy-cloud-heartbeat-client/pom.xml
#	wu-lazy-cloud-heartbeat-server/pom.xml
This commit is contained in:
wujiawei
2025-07-21 17:00:28 +08:00
11 changed files with 260 additions and 20 deletions

24
pom.xml
View File

@@ -15,7 +15,26 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.3.1-JDK24</version> <version>1.3.1-JDK24</version>
<description>云上云下</description> <description>云上云下</description>
<name>wlcn项目</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<modules> <modules>
<!-- 云上服务组件 --> <!-- 云上服务组件 -->
@@ -38,6 +57,7 @@
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<version>1.18.38</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
@@ -57,12 +77,14 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId> <artifactId>spring-boot-configuration-processor</artifactId>
<version>3.5.3</version>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId> <artifactId>spring-boot-starter-actuator</artifactId>
<version>${spring-boot-starter.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@@ -12,6 +12,26 @@
<artifactId>wu-lazy-cloud-heartbeat-client</artifactId> <artifactId>wu-lazy-cloud-heartbeat-client</artifactId>
<description>云下心跳客户端</description> <description>云下心跳客户端</description>
<name>wlcn客户端模块</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,11 +42,12 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-common</artifactId> <artifactId>wu-lazy-cloud-heartbeat-common</artifactId>
<version>${wu-lazy-cloud-heartbeat-common.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-protocol-proxy</artifactId> <artifactId>wu-lazy-cloud-heartbeat-protocol-proxy</artifactId>
<version>1.3.1-JDK24</version> <version>${wu-lazy-cloud-heartbeat-protocol-proxy.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
@@ -38,14 +59,17 @@
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<version>2.3.232</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-web-spring-starter</artifactId> <artifactId>wu-framework-web-spring-starter</artifactId>
<version>${wu-framework-web-spring-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-database-lazy-orm-plus-starter</artifactId> <artifactId>wu-database-lazy-orm-plus-starter</artifactId>
<version>${wu-database-lazy-orm-plus-starter.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@@ -10,7 +10,28 @@
</parent> </parent>
<artifactId>wu-lazy-cloud-heartbeat-common</artifactId> <artifactId>wu-lazy-cloud-heartbeat-common</artifactId>
<description>wlcn项目通用模块</description>
<name>wlcn项目通用模块</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -20,14 +41,17 @@
<dependency> <dependency>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
<artifactId>netty-all</artifactId> <artifactId>netty-all</artifactId>
<version>4.1.122.Final</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-web</artifactId> <artifactId>wu-framework-web</artifactId>
<version>${wu-framework-web.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId> <artifactId>spring-boot</artifactId>
<version>${spring-boot-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>

View File

@@ -13,6 +13,26 @@
<artifactId>wu-lazy-cloud-heartbeat-dns</artifactId> <artifactId>wu-lazy-cloud-heartbeat-dns</artifactId>
<description>云上心跳服务dns</description> <description>云上心跳服务dns</description>
<name>wlcn项目DNS</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,11 +42,13 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-web</artifactId> <artifactId>wu-framework-web</artifactId>
<version>${wu-framework-web.version}</version>
</dependency> </dependency>
<!-- 通用心跳包 --> <!-- 通用心跳包 -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-common</artifactId> <artifactId>wu-lazy-cloud-heartbeat-common</artifactId>
<version>${wu-lazy-cloud-heartbeat-common.version}</version>
</dependency> </dependency>
<!-- 数据库 --> <!-- 数据库 -->
<dependency> <dependency>
@@ -38,6 +60,7 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-database-lazy-orm-plus-starter</artifactId> <artifactId>wu-database-lazy-orm-plus-starter</artifactId>
<version>${wu-database-lazy-orm-plus-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
@@ -52,6 +75,7 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-lazy-orm-spring-starter</artifactId> <artifactId>wu-framework-lazy-orm-spring-starter</artifactId>
<version>${wu-framework-lazy-orm-spring-starter.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@@ -13,6 +13,27 @@
<artifactId>wu-lazy-cloud-heartbeat-protocol-proxy</artifactId> <artifactId>wu-lazy-cloud-heartbeat-protocol-proxy</artifactId>
<description>云上心跳服务协议代理</description> <description>云上心跳服务协议代理</description>
<name>wlcn项目代理组件</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,11 +43,13 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-web</artifactId> <artifactId>wu-framework-web</artifactId>
<version>${wu-framework-web.version}</version>
</dependency> </dependency>
<!-- 通用心跳包 --> <!-- 通用心跳包 -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-common</artifactId> <artifactId>wu-lazy-cloud-heartbeat-common</artifactId>
<version>${wu-lazy-cloud-heartbeat-common.version}</version>
</dependency> </dependency>
<!-- 数据库 --> <!-- 数据库 -->
<dependency> <dependency>
@@ -38,6 +61,7 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-database-lazy-orm-plus-starter</artifactId> <artifactId>wu-database-lazy-orm-plus-starter</artifactId>
<version>${wu-database-lazy-orm-plus-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
@@ -52,6 +76,7 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-lazy-orm-spring-starter</artifactId> <artifactId>wu-framework-lazy-orm-spring-starter</artifactId>
<version>${wu-framework-lazy-orm-spring-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>

View File

@@ -12,6 +12,27 @@
<artifactId>wu-lazy-cloud-heartbeat-server-cluster</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server-cluster</artifactId>
<description>云上心跳服务端集群</description> <description>云上心跳服务端集群</description>
<name>wlcn项目集群方式</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,11 +43,13 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-server</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server</artifactId>
<version>${wu-lazy-cloud-heartbeat-server.version}</version>
</dependency> </dependency>
<!-- 客户端 --> <!-- 客户端 -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-client</artifactId> <artifactId>wu-lazy-cloud-heartbeat-client</artifactId>
<version>${wu-lazy-cloud-heartbeat-client.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@@ -13,6 +13,27 @@
<artifactId>wu-lazy-cloud-heartbeat-server</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server</artifactId>
<description>云上心跳服务端</description> <description>云上心跳服务端</description>
<name>wlcn项目服务端组件</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,16 +43,18 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-web</artifactId> <artifactId>wu-framework-web</artifactId>
<version>${wu-framework-web.version}</version>
</dependency> </dependency>
<!-- 通用心跳包 --> <!-- 通用心跳包 -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-common</artifactId> <artifactId>wu-lazy-cloud-heartbeat-common</artifactId>
<version>${wu-lazy-cloud-heartbeat-common.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-protocol-proxy</artifactId> <artifactId>wu-lazy-cloud-heartbeat-protocol-proxy</artifactId>
<version>1.3.1-JDK24</version> <version>${wu-lazy-cloud-heartbeat-protocol-proxy.version}</version>
</dependency> </dependency>
<!-- 数据库 --> <!-- 数据库 -->
<dependency> <dependency>
@@ -43,16 +66,19 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-database-lazy-orm-plus-starter</artifactId> <artifactId>wu-database-lazy-orm-plus-starter</artifactId>
<version>${wu-database-lazy-orm-plus-starter.version}</version>
</dependency> </dependency>
<!-- 授权平台 --> <!-- 授权平台 -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-authorization-server-platform-starter</artifactId> <artifactId>wu-authorization-server-platform-starter</artifactId>
<version>${wu-authorization-server-platform-starter.version}</version>
</dependency> </dependency>
<!-- jvm --> <!-- jvm -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-jvm-server-platform-starter</artifactId> <artifactId>wu-jvm-server-platform-starter</artifactId>
<version>${wu-jvm-server-platform-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
@@ -67,15 +93,18 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-framework-lazy-orm-spring-starter</artifactId> <artifactId>wu-framework-lazy-orm-spring-starter</artifactId>
<version>${wu-framework-lazy-orm-spring-starter.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-log-server-platform-starter</artifactId> <artifactId>wu-log-server-platform-starter</artifactId>
<version>${wu-log-server-platform-starter.version}</version>
</dependency> </dependency>
<!-- 内网穿透客户端 --> <!-- 内网穿透客户端 -->
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-client</artifactId> <artifactId>wu-lazy-cloud-heartbeat-client</artifactId>
<version>${wu-lazy-cloud-heartbeat-client.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@@ -10,10 +10,30 @@
<artifactId>wu-lazy-cloud-heartbeat-start</artifactId> <artifactId>wu-lazy-cloud-heartbeat-start</artifactId>
<name>wu-lazy-cloud-heartbeat-start</name>
<description>wu-lazy-cloud-heartbeat-start</description> <description>wu-lazy-cloud-heartbeat-start</description>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>wlcn项目程序</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<modules> <modules>
<!-- 样例 --> <!-- 样例 -->
<module>wu-lazy-cloud-heartbeat-client-start</module> <module>wu-lazy-cloud-heartbeat-client-start</module>
@@ -23,18 +43,6 @@
<properties> <properties>
<java.version>24</java.version> <java.version>24</java.version>
</properties> </properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build> <build>
<plugins> <plugins>

View File

@@ -12,6 +12,26 @@
<artifactId>wu-lazy-cloud-heartbeat-client-start</artifactId> <artifactId>wu-lazy-cloud-heartbeat-client-start</artifactId>
<description>云下心跳客户端</description> <description>云下心跳客户端</description>
<name>wlcn项目客户端</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -21,6 +41,7 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-client</artifactId> <artifactId>wu-lazy-cloud-heartbeat-client</artifactId>
<version>${wu-lazy-cloud-heartbeat-client.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>mysql</groupId> <groupId>mysql</groupId>

View File

@@ -13,6 +13,26 @@
<artifactId>wu-lazy-cloud-heartbeat-server-cluster-start</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server-cluster-start</artifactId>
<description>云上心跳服务端</description> <description>云上心跳服务端</description>
<name>wlcn项目服务端机群</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,11 +42,9 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-server-cluster</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server-cluster</artifactId>
<version>${wu-lazy-cloud-heartbeat-server-cluster.version}</version>
</dependency> </dependency>
<!-- <dependency>-->
<!-- <groupId>top.wu2020</groupId>-->
<!-- <artifactId>wu-smart-acw-client</artifactId>-->
<!-- </dependency>-->
</dependencies> </dependencies>

View File

@@ -13,6 +13,27 @@
<artifactId>wu-lazy-cloud-heartbeat-server-start</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server-start</artifactId>
<description>云上心跳服务端</description> <description>云上心跳服务端</description>
<name>wlcn项目服务端</name>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
<!-->开发者的信息<-->
<developers>
<developer>
<name>Jia Wei Wu</name>
<email>1207537021@qq.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-->项目的版本管理地址<-->
<scm>
<url>https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network</url>
</scm>
<properties> <properties>
<maven.compiler.source>24</maven.compiler.source> <maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target> <maven.compiler.target>24</maven.compiler.target>
@@ -22,6 +43,7 @@
<dependency> <dependency>
<groupId>top.wu2020</groupId> <groupId>top.wu2020</groupId>
<artifactId>wu-lazy-cloud-heartbeat-server</artifactId> <artifactId>wu-lazy-cloud-heartbeat-server</artifactId>
<version>${wu-lazy-cloud-heartbeat-server.version}</version>
</dependency> </dependency>
<!-- <dependency>--> <!-- <dependency>-->
<!-- <groupId>top.wu2020</groupId>--> <!-- <groupId>top.wu2020</groupId>-->