From beaf78a9ced8d9fc4f044c1fd7c8b957bb90a688 Mon Sep 17 00:00:00 2001 From: arisnguyenit97 Date: Sat, 27 Jul 2024 21:07:03 +0700 Subject: [PATCH] :books: docs: update README.md #3 --- README.md | 19 ++++++++++++++++++- plugin/gradle.yml | 5 ++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 833cedb..e130200 100644 --- a/README.md +++ b/README.md @@ -65,12 +65,29 @@ ng: version: v1.0.0 enabled_link: true # enable compression and attachment of the external libraries jars: + # unify4J: Java 1.8 skeleton library offering a rich toolkit of utility functions + # for collections, strings, date/time, JSON, maps, and more. - enabled: false # enable compression and attachment of the external libraries - source: "./../libs/unify4j-v1.0.0.jar" # lib Jar + source: "./../libs/unify4j-v1.0.0.jar" + # bot4j: a robust designed for sending notifications to various messaging platforms such as Telegram, Discord, and Slack. - enabled: true source: "./../libs/bot4j-v1.0.0.jar" ``` +## Add dependencies + +```groovy +// The "spring-core" library, version 5.3.31, is a fundamental component of the Spring Framework, +// offering essential functionality for dependency injection, bean management, and core utilities to facilitate robust Java application development within the Spring ecosystem. +implementation group: 'org.springframework', name: 'spring-core', version: '5.3.31' +// The "spring-boot-starter-web" library, version 2.7.18, is a Spring Boot starter module that facilitates the setup of web applications, +// providing essential dependencies and configurations for building web-based projects. +implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.7.18' +// The "spring-boot-configuration-processor" library, version 2.7.18, +// is a Spring Boot module that processes configuration metadata annotations to generate metadata files and aid in auto-configuration of Spring applications. +implementation group: 'org.springframework.boot', name: 'spring-boot-configuration-processor', version: '2.7.18' +``` + ## Integration 1. Add dependency into file `build.gradle` diff --git a/plugin/gradle.yml b/plugin/gradle.yml index 1c8983b..5f69f28 100644 --- a/plugin/gradle.yml +++ b/plugin/gradle.yml @@ -4,7 +4,10 @@ ng: version: v1.0.0 enabled_link: true # enable compression and attachment of the external libraries jars: + # unify4J: Java 1.8 skeleton library offering a rich toolkit of utility functions + # for collections, strings, date/time, JSON, maps, and more. - enabled: false # enable compression and attachment of the external libraries - source: "./../libs/unify4j-v1.0.0.jar" # lib Jar + source: "./../libs/unify4j-v1.0.0.jar" + # bot4j: a robust designed for sending notifications to various messaging platforms such as Telegram, Discord, and Slack. - enabled: true source: "./../libs/bot4j-v1.0.0.jar"