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

39 lines
1.2 KiB
XML
Raw Normal View History

2025-03-21 10:16:53 +08:00
<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-biz</artifactId>
<dependencies>
<dependency>
<groupId>com.nursingunit.boot</groupId>
<!--新建模块需要修改 yourModuleName 替换为模块名称-->
<artifactId>nu-yourModuleName-local-api</artifactId>
<version>${nursingunit.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>hibernate-re</artifactId>
</dependency>
<!-- 企业微信/钉钉 api -->
<dependency>
<groupId>org.jeecgframework</groupId>
<artifactId>weixin4j</artifactId>
</dependency>
</dependencies>
</project>