ShiShiYiBan/yudao-module-haoka/yudao-module-haoka-api/pom.xml

26 lines
1.0 KiB
XML
Raw Normal View History

2024-12-10 15:00:45 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-haoka</artifactId>
<version>${revision}</version>
</parent>
<artifactId>yudao-module-haoka-api</artifactId>
2024-12-14 15:02:19 +08:00
<packaging>jar</packaging> <!-- 2. 新增 packaging 为 jar -->
2024-12-10 15:00:45 +08:00
2024-12-14 15:02:19 +08:00
<name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
2024-12-10 15:00:45 +08:00
<description> <!-- 4. 新增 description 为该模块的描述 -->
2024-12-14 15:02:19 +08:00
demo 模块 API暴露给其它模块调用
2024-12-10 15:00:45 +08:00
</description>
2024-12-14 15:02:19 +08:00
<dependencies> <!-- 5. 新增 yudao-common 依赖 -->
2024-12-10 15:00:45 +08:00
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-common</artifactId>
</dependency>
</dependencies>
</project>