<?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-cms</artifactId> <version>${revision}</version> </parent> <artifactId>yudao-module-cms-biz</artifactId> <packaging>jar</packaging> <name>${project.artifactId}</name> <description> cms 模块,主要实现 合同管理、客户信息维护 等功能。 </description> <dependencies> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-module-cms-api</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-module-bpm-api</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-module-pms-api</artifactId> <version>${revision}</version> </dependency> <!-- Web 相关 --> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-spring-boot-starter-security</artifactId> </dependency> <!-- DB 相关 --> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-spring-boot-starter-mybatis</artifactId> </dependency> <!-- Test 测试相关 --> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-spring-boot-starter-test</artifactId> </dependency> <!-- excel 导入导出 --> <dependency> <groupId>cn.iocoder.boot</groupId> <artifactId>yudao-spring-boot-starter-excel</artifactId> </dependency> </dependencies> </project>