mirror of
https://github.com/continew-org/continew-starter.git
synced 2025-09-09 04:59:21 +08:00
feat(security): 新增 continew-starter-security-all 模块,统一引入加密、脱敏、密码编码器能力
This commit is contained in:
@@ -387,6 +387,13 @@
|
|||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 安全模块 - 统一模块 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>top.charles7c.continew</groupId>
|
||||||
|
<artifactId>continew-starter-security-all</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- 安全模块 - 加密 -->
|
<!-- 安全模块 - 加密 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>top.charles7c.continew</groupId>
|
<groupId>top.charles7c.continew</groupId>
|
||||||
|
@@ -0,0 +1,34 @@
|
|||||||
|
<?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>top.charles7c.continew</groupId>
|
||||||
|
<artifactId>continew-starter-security</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>continew-starter-security-all</artifactId>
|
||||||
|
<description>ContiNew Starter 安全模块 - 统一模块</description>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<!-- 安全模块 - 加密 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>top.charles7c.continew</groupId>
|
||||||
|
<artifactId>continew-starter-security-crypto</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 安全模块 - 脱敏 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>top.charles7c.continew</groupId>
|
||||||
|
<artifactId>continew-starter-security-mask</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 安全模块 - 密码编码器 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>top.charles7c.continew</groupId>
|
||||||
|
<artifactId>continew-starter-security-password</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
@@ -14,6 +14,7 @@
|
|||||||
<description>ContiNew Starter 安全模块</description>
|
<description>ContiNew Starter 安全模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
<module>continew-starter-security-all</module>
|
||||||
<module>continew-starter-security-password</module>
|
<module>continew-starter-security-password</module>
|
||||||
<module>continew-starter-security-mask</module>
|
<module>continew-starter-security-mask</module>
|
||||||
<module>continew-starter-security-crypto</module>
|
<module>continew-starter-security-crypto</module>
|
||||||
|
Reference in New Issue
Block a user