Skip to content

Commit

Permalink
ECWID-95251 fix example of how to add library to the gradle project w…
Browse files Browse the repository at this point in the history
…ith Kotlin DSL in README.md
  • Loading branch information
alexey-gr committed Jun 27, 2024
1 parent dbfe334 commit a3f0525
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a3f0525

Please sign in to comment.