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.

52 lines
1.8 KiB

4 weeks 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-rule</artifactId>
<packaging>jar</packaging>
<name>crm-rule</name>
<description>CRM 线索规则模块:公海池配置(归属部门/负责市场/人员/领取规则/时效上限)+ 行政区划查找表(sys_region)</description>
<!-- 依赖方向单向:crm-rule → (crm-auth / crm-base),不得反向依赖 crm-lead -->
<dependencies>
<dependency>
<groupId>com.crm</groupId>
<artifactId>crm-base</artifactId>
</dependency>
<dependency>
<groupId>com.crm</groupId>
<artifactId>crm-auth</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>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</dependency>
</dependencies>
</project>