From 2c453be260a32e2d5f011732d747e31f38e13540 Mon Sep 17 00:00:00 2001 From: hyunwooP Date: Mon, 29 Jul 2024 15:15:42 +0900 Subject: [PATCH] docs : Add explanation for gradle project --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c280868d6..8e4429c23 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,9 @@ This section shows you how to get started quickly and explains some common confi ### Step 1: Install the Unleash Java SDK -You need to add the Unleash SDK as a dependency for your project. Here's how you would add it to your `pom.xml` file: +You need to add the Unleash SDK as a dependency for your project. Here's how you would add it to your `pom.xml` and `build.gradle` file: +**pom.xml** ```xml io.getunleash @@ -22,7 +23,10 @@ You need to add the Unleash SDK as a dependency for your project. Here's how you Latest version here ``` - +**build.gradle** +```gradle + implementation("io.getunleash:unleash-client-java:$unleashedVersion") +``` ### Step 2: Create a new Unleash instance