31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.leocoder.thin</groupId>
|
|
<artifactId>coder-common-thin-plugins</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
|
|
<name>coder-common-thin-desensitize</name>
|
|
<artifactId>coder-common-thin-desensitize</artifactId>
|
|
<description>数据脱敏插件</description>
|
|
|
|
<dependencies>
|
|
<!-- 全局公共模块 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.thin</groupId>
|
|
<artifactId>coder-common-thin-common</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- SpringBoot Aop依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |