Skip to content

Commit

Permalink
feat(security): 新增 continew-starter-security-all 模块,统一引入加密、脱敏、密码编码器能力
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Feb 9, 2024
1 parent 111e732 commit 12c3d64
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
7 changes: 7 additions & 0 deletions continew-starter-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,13 @@
<version>${revision}</version>
</dependency>

<!-- 安全模块 - 统一模块 -->
<dependency>
<groupId>top.charles7c.continew</groupId>
<artifactId>continew-starter-security-all</artifactId>
<version>${revision}</version>
</dependency>

<!-- 安全模块 - 加密 -->
<dependency>
<groupId>top.charles7c.continew</groupId>
Expand Down
34 changes: 34 additions & 0 deletions continew-starter-security/continew-starter-security-all/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
1 change: 1 addition & 0 deletions continew-starter-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<description>ContiNew Starter 安全模块</description>

<modules>
<module>continew-starter-security-all</module>
<module>continew-starter-security-password</module>
<module>continew-starter-security-mask</module>
<module>continew-starter-security-crypto</module>
Expand Down

0 comments on commit 12c3d64

Please sign in to comment.