You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.7 KiB
73 lines
2.7 KiB
|
3 days ago
|
<?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>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>crm-customer</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>crm-customer</name>
|
||
|
|
<description>CRM 客户业务模块:三 workspace/归属流转/客户阶段/查重/交割/导入/超期提醒</description>
|
||
|
|
|
||
|
|
<!-- 依赖方向单向(票 01):crm-customer → crm-base/crm-auth/crm-rule/crm-dict/crm-file/crm-preference。
|
||
|
|
不依赖 crm-opportunity:「关联商机」反查与「商机读客户」均走 customer 侧定义的出站 port,
|
||
|
|
Maven 依赖只走 crm-opportunity → crm-customer 单向,循环依赖靠 Spring DI 解除(ADR-0029 范式)。 -->
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-base</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-auth</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-rule</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-dict</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-file</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-preference</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 票 08 客户导入:Excel 解析/模板生成(父 POM dependencyManagement 管版本 4.0.3) -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 单元测试 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- 集成测试:H2 MySQL 模式(仿 crm-opportunity 服务层 H2 集成测试范式) -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.h2database</groupId>
|
||
|
|
<artifactId>h2</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|