From c8ff576118407cf706d99c9f0ee07af814d08584 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Moravec?= Date: Wed, 23 Aug 2023 06:45:28 +0200 Subject: [PATCH] Clarify dependency statement in README and build.gradle Verbiage was updated in README.md and build.gradle.kts files to specify that the WebPush library has 'zero external dependencies' instead of just 'zero dependencies'. This change was made to enhance the clarity and accuracy of the library's description. --- README.md | 2 +- build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 940c48b..905262f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # WebPush -Lightweight Kotlin library for sending web **push notifications** with zero dependencies. +Lightweight Kotlin library for sending web **push notifications** with zero external dependencies. This library by default uses blocking HTTP client provided in the JDK, but you can also use it only to build your requests and combine it [with any HTTP library](#using-custom-http-client) that suits your needs. diff --git a/build.gradle.kts b/build.gradle.kts index e56e1f9..7bde8b3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -88,7 +88,7 @@ nexusPublishing { publishing.publications.withType().all { pom { name = "WebPush" - description = "Lightweight Kotlin library for sending web push notifications with zero dependencies." + description = "Lightweight Kotlin library for sending web push notifications with zero external dependencies." url = "https://github.com/interaso/webpush" scm { connection = "scm:git:https://github.com/interaso/webpush.git"