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.
58 lines
2.1 KiB
58 lines
2.1 KiB
|
1 month 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-dict</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>crm-dict</name>
|
||
|
|
<description>CRM 数据字典模块:两级平铺字典(分组 → 字典项),稳定编码供业务模块引用(ADR-0015)</description>
|
||
|
|
|
||
|
|
<!-- 本模块只依赖 crm-base,不 import crm-auth 任何类(ADR-0015);
|
||
|
|
权限控制仅依赖权限码字符串契约 -->
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.crm</groupId>
|
||
|
|
<artifactId>crm-base</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 字典读路径本地缓存(10s TTL,ADR-0015) -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
||
|
|
<artifactId>caffeine</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 单元测试:JUnit 5 + Mockito + AssertJ + Spring Test -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- H2 内存库(MySQL 兼容模式)承载 Seam 1/2 集成测试 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.h2database</groupId>
|
||
|
|
<artifactId>h2</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis</groupId>
|
||
|
|
<artifactId>mybatis-spring</artifactId>
|
||
|
|
<version>3.0.3</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|