mirror of
https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network.git
synced 2026-02-04 15:05:54 +08:00
106 lines
3.4 KiB
XML
106 lines
3.4 KiB
XML
<?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>
|
|
|
|
|
|
<parent>
|
|
<artifactId>wu-framework-parent</artifactId>
|
|
<groupId>top.wu2020</groupId>
|
|
<version>1.3.4-JDK24-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>wu-lazy-cloud-network</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.3.4-JDK24-SNAPSHOT</version>
|
|
<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>
|
|
<!-- 云上服务组件 -->
|
|
<module>wu-lazy-cloud-heartbeat-server</module>
|
|
<module>wu-lazy-cloud-heartbeat-server-cluster</module>
|
|
<module>wu-lazy-cloud-heartbeat-client</module>
|
|
<module>wu-lazy-cloud-heartbeat-common</module>
|
|
<module>wu-lazy-cloud-heartbeat-dns</module>
|
|
<module>wu-lazy-cloud-heartbeat-protocol-proxy</module>
|
|
|
|
<!-- 启动类 -->
|
|
<module>wu-lazy-cloud-heartbeat-start</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
|
|
</properties>
|
|
<dependencies>
|
|
<!-- mapstruct -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.38</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok-mapstruct-binding</artifactId>
|
|
<version>0.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct</artifactId>
|
|
<version>1.6.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
<version>1.6.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<version>3.5.3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
<version>${spring-boot-starter.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>top.wu2020</groupId>
|
|
<artifactId>wu-framework-dependencies</artifactId>
|
|
<version>1.3.4-JDK24-SNAPSHOT</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
</project> |