Skip to content

Commit a3f0525

Browse files
committed
ECWID-95251 fix example of how to add library to the gradle project with Kotlin DSL in README.md
1 parent dbfe334 commit a3f0525

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ To add the current library to a Maven project, you need to add the following blo
2929

3030
#### Adding the Library to a Gradle Project
3131

32-
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:
32+
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:
3333

34-
```groovy
35-
implementation 'com.ecwid.apiclient:api-client:0.326.0'
34+
```kotlin
35+
implementation("com.ecwid.apiclient:api-client:0.326.0")
3636
```
3737

3838
## Examples

0 commit comments

Comments
 (0)