Skip to content

Commit 059b503

Browse files
readme
1 parent f2329a8 commit 059b503

File tree

2 files changed

+73
-2
lines changed

2 files changed

+73
-2
lines changed

.github/workflows/maven.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Maven Build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up JDK 17
17+
uses: actions/setup-java@v3
18+
with:
19+
java-version: 17
20+
architecture: x64
21+
distribution: corretto
22+
cache: maven
23+
- name: Build with Maven
24+
run: mvn -B package

README.md

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,49 @@
1-
# module-security
2-
Spring Security integration for DynamiaTools projects
1+
# Security Module
2+
3+
[![Maven Central](https://img.shields.io/maven-central/v/tools.dynamia.modules/tools.dynamia.modules.security.core)](https://search.maven.org/search?q=tools.dynamia.modules.security)
4+
![Java Version Required](https://img.shields.io/badge/java-17-blue)
5+
[![Maven Build](https://github.com/dynamiatools/module-security/actions/workflows/maven.yml/badge.svg)](https://github.com/dynamiatools/module-email/actions/workflows/maven.yml)
6+
7+
Welcome to Module-Security, a powerful integration with DynamiaTools designed to provide user management, profile management, access tokens, restrictions, and much more for any web application developed with DynamiaTools. Internally, it leverages Spring Security and Spring Boot to ensure robust security features.
8+
9+
## 🔒 Features
10+
- User Management: Easily manage users within your application.
11+
- Profile Management: Define and assign profiles to users.
12+
- Access Tokens: Manage access tokens for secure authentication.
13+
- Restrictions: Set up access restrictions based on user roles and permissions.
14+
- And much more!
15+
16+
## 🚀 **Getting Started**
17+
To integrate Security into your DynamiaTools project, follow these steps:
18+
19+
1. Add the following Maven dependency to your project's `pom.xml`:
20+
```xml
21+
<dependency>
22+
<groupId>tools.dynamia.modules</groupId>
23+
<artifactId>tools.dynamia.modules.security.core</artifactId>
24+
<version>1.0.0</version>
25+
</dependency>
26+
```
27+
28+
2. If you're using ZK for the frontend, include the UI module dependency as well:
29+
```xml
30+
<dependency>
31+
<groupId>tools.dynamia.modules</groupId>
32+
<artifactId>tools.dynamia.modules.security.ui</artifactId>
33+
<version>1.0.0</version>
34+
</dependency>
35+
```
36+
37+
3. Ensure your project is configured to use Spring Security and Spring Boot.
38+
39+
4. Start integrating user management, profile management, and other security features into your application!
40+
41+
## 📝 **License**
42+
Security module is licensed under the Apache License 2.0. See the [LICENSE](LICENSE) file for more details.
43+
44+
## 📖 **Documentation**
45+
For detailed documentation and usage instructions, please refer to the [official documentation](https://yourdocumentationlinkhere.com).
46+
47+
## 🤝 **Contributing**
48+
Contributions are welcome! Feel free to open issues or submit pull requests.
49+

0 commit comments

Comments
 (0)