Skip to content

Commit

Permalink
Clarify dependency statement in README and build.gradle
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
morki committed Aug 23, 2023
1 parent a75be3e commit c8ff576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ nexusPublishing {
publishing.publications.withType<MavenPublication>().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"
Expand Down

0 comments on commit c8ff576

Please sign in to comment.