mirror of
https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network.git
synced 2026-02-04 15:05:54 +08:00
94 lines
3.6 KiB
XML
94 lines
3.6 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">
|
|
<parent>
|
|
<groupId>top.wu2020</groupId>
|
|
<artifactId>wu-lazy-cloud-heartbeat-start</artifactId>
|
|
<version>1.3.1-JDK24</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>wu-lazy-cloud-heartbeat-server-start</artifactId>
|
|
<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>
|
|
<maven.compiler.source>24</maven.compiler.source>
|
|
<maven.compiler.target>24</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>top.wu2020</groupId>
|
|
<artifactId>wu-lazy-cloud-heartbeat-server</artifactId>
|
|
<version>${wu-lazy-cloud-heartbeat-server.version}</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>top.wu2020</groupId>-->
|
|
<!-- <artifactId>wu-smart-acw-client</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.graalvm.buildtools</groupId>-->
|
|
<!-- <artifactId>native-maven-plugin</artifactId>-->
|
|
<!-- <version>0.10.3</version>-->
|
|
<!-- <configuration>-->
|
|
<!-- <!– imageName用于设置生成的二进制文件名称 –>-->
|
|
<!-- <imageName>${project.artifactId}</imageName>-->
|
|
<!-- <!– mainClass用于指定main方法类路径 –>-->
|
|
<!-- <mainClass>org.framework.lazy.cloud.network.heartbeat.server.LazyCloudHeartbeatServerStart-->
|
|
<!-- </mainClass>-->
|
|
<!-- <buildArgs>-->
|
|
<!-- --no-fallback-->
|
|
<!-- </buildArgs>-->
|
|
<!-- </configuration>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>build-native</id>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>compile-no-fork</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <phase>package</phase>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |