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.
 
 
 
 
 

65 lines
2.4 KiB

<?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-opportunity</artifactId>
<packaging>jar</packaging>
<name>crm-opportunity</name>
<description>CRM 商机业务模块:状态+阶段双轴/四视图/公海/暂缓/移交/转项目</description>
<!-- 依赖方向单向:crm-opportunity → crm-rule / crm-auth / crm-dict / crm-file / crm-preference / crm-base -->
<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>
<!-- 技术债(ADR-0029):下游依赖上游。实现 crm-lead 定义的 outbound port
OpportunityCreationPort(线索转商机)。方向不干净,一旦 crm-lead 需读商机会成环;
当前同库单体阶段可接受(ADR-0020),独立部署时随 0020 supersede 重设。 -->
<dependency>
<groupId>com.crm</groupId>
<artifactId>crm-lead</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>
</dependencies>
</project>