From a3f0525cf75b329bbb8033d02bc585c156a4075b Mon Sep 17 00:00:00 2001 From: Aleksei Griaznov Date: Thu, 27 Jun 2024 18:12:31 +0400 Subject: [PATCH] ECWID-95251 fix example of how to add library to the gradle project with Kotlin DSL in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a9745032e..98a440978 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,10 @@ To add the current library to a Maven project, you need to add the following blo #### Adding the Library to a Gradle Project -To add the current library to a Gradle project, you need to add the following line to your project's `build.gradle` file inside the `dependencies` block: +To add the current library to a Gradle project using Kotlin DSL, you need to add the following line to your project's `build.gradle.kts` file inside the `dependencies` block: -```groovy -implementation 'com.ecwid.apiclient:api-client:0.326.0' +```kotlin +implementation("com.ecwid.apiclient:api-client:0.326.0") ``` ## Examples