From 5a398f896d86cd30598f0ebdb63141d7845d5da3 Mon Sep 17 00:00:00 2001 From: Armando Cordova <18663098+corlaez@users.noreply.github.com> Date: Thu, 7 Dec 2023 10:19:51 -0500 Subject: [PATCH] Add Gradle Dependency declaration --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ece677222..27372af81 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,9 @@ ROME is a Java framework for RSS and Atom feeds. The framework consist of severa Starting with ROME 2.x Java 8 or higher is required. The only exception is version 2.0.0, which requires Java 11. However, this has been corrected in version 2.1.0. -### Dependency (Maven) +### Dependency + +#### Maven ```xml @@ -29,6 +31,13 @@ Starting with ROME 2.x Java 8 or higher is required. The only exception is versi ``` +#### Gradle Kotlin Script +```kts +dependencies { + implementation("com.rometools:rome:${romeVersion}") +} +``` + ### Parse a feed ```java String url = "https://stackoverflow.com/feeds/tag?tagnames=rome";