From 6e4381711117b6fb3a4450339039e9083224932a Mon Sep 17 00:00:00 2001 From: arisnguyenit97 Date: Thu, 5 Sep 2024 20:50:44 +0700 Subject: [PATCH] :mute: silent changes: refactor codebase #2 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bdf57dc..1c9fc43 100644 --- a/README.md +++ b/README.md @@ -95,13 +95,13 @@ testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter // enabling developers to write unit tests using Mockito's powerful mocking features. // It's designed to work specifically with the JUnit 5 platform, allowing for advanced testing capabilities. testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.12.4' +// The "spring-boot-starter-security" library, version 2.7.18, is an essential component of Spring Boot applications, +// offering robust security features to safeguard your application's endpoints, authenticate users, and manage access control effectively. +implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '2.7.18' // The "spring-boot-starter-aop" library, version 2.7.18, provides support for Aspect-Oriented Programming (AOP) in Spring Boot applications. // AOP enables modularization of cross-cutting concerns such as logging, security, and transactions by allowing aspects to be applied to various parts of the application. // This starter simplifies the setup and configuration of AOP-related functionality, promoting cleaner and more maintainable code by separating concerns effectively. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '2.7.18' -// The "spring-boot-starter-security" library, version 2.7.18, is an essential component of Spring Boot applications, -// offering robust security features to safeguard your application's endpoints, authenticate users, and manage access control effectively. -implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '2.7.18' ``` ## Integration