ECS-CMD/ECS-system-start/pom.xml

31 lines
862 B
XML
Raw Permalink Normal View History

2024-09-30 18:59:27 +08:00
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
2025-03-25 19:26:17 +08:00
<groupId>ecs-boot-parent</groupId>
<artifactId>org.ecsframework.boot</artifactId>
2024-09-30 18:59:27 +08:00
<version>1.0.0</version>
</parent>
2025-03-25 19:26:17 +08:00
<artifactId>ECS-system-start</artifactId>
2024-11-05 17:10:26 +08:00
<packaging>jar</packaging>
2024-09-30 18:59:27 +08:00
<dependencies>
2024-11-05 17:10:26 +08:00
<!-- 添加特有的依赖 -->
2024-09-30 18:59:27 +08:00
</dependencies>
<build>
2024-11-05 17:10:26 +08:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
2024-09-30 18:59:27 +08:00
</build>
</project>