You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-3Lines changed: 23 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,26 @@ apiHost=app.local.ecwid.com
15
15
apiPort=8443
16
16
```
17
17
18
+
#### Adding the Library to a Maven Project
19
+
20
+
To add the current library to a Maven project, you need to add the following block of code to your project's `pom.xml` file inside the `<dependencies>` tag:
21
+
22
+
```xml
23
+
<dependency>
24
+
<groupId>com.ecwid.apiclient</groupId>
25
+
<artifactId>api-client</artifactId>
26
+
<version>0.326.0</version>
27
+
</dependency>
28
+
```
29
+
30
+
#### Adding the Library to a Gradle Project
31
+
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:
0 commit comments