nursing_unit_java/nursing-unit-yourModuleName/nu-yourModuleName-api/pom.xml

28 lines
1.0 KiB
XML
Raw Normal View History

2025-03-21 10:16:53 +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">
<parent>
<groupId>com.nursingunit.boot</groupId>
<!--新建模块需要修改 yourModuleName 替换为模块名称-->
<artifactId>nursing-unit-yourModuleName</artifactId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<!--新建模块需要修改 yourModuleName 替换为模块名称-->
<artifactId>nu-yourModuleName-api</artifactId>
<packaging>pom</packaging>
<modules>
<!--新建模块需要修改 yourModuleName 替换为模块名称-->
<module>nu-yourModuleName-local-api</module>
</modules>
<dependencies>
<dependency>
<groupId>com.nursingunit.boot</groupId>
<artifactId>nursing-unit-base-core</artifactId>
</dependency>
</dependencies>
</project>