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.
64 lines
2.3 KiB
64 lines
2.3 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-log</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>crm-log</name>
|
|
<description>CRM 全局日志模块(A7-4):操作/登录/批量三表 + AOP 兜底采集 + 结果文件 90 天管理</description>
|
|
|
|
<!-- 依赖方向单向:crm-log → (crm-base / crm-auth / crm-file)。
|
|
crm-auth 经 crm-base 的 OpLogPort SPI 埋点,不反向依赖本模块 -->
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.crm</groupId>
|
|
<artifactId>crm-base</artifactId>
|
|
</dependency>
|
|
<!-- 部门名/用户快照解析(对称 crm-rule → crm-auth 先例) -->
|
|
<dependency>
|
|
<groupId>com.crm</groupId>
|
|
<artifactId>crm-auth</artifactId>
|
|
</dependency>
|
|
<!-- 批量结果文件落盘与下载(FileApi 门面) -->
|
|
<dependency>
|
|
<groupId>com.crm</groupId>
|
|
<artifactId>crm-file</artifactId>
|
|
</dependency>
|
|
|
|
<!-- AOP 注解切面(全仓首个 @Aspect,启用 aspectjweaver;版本由 parent 管) -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</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>
|
|
|