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
The WooCommerce REST API client library for Java provides easy access to the features of the e-commerce platform's API.
4
-
The client supports the WooCommerce REST API in the latest v3 version.
3
+
Effortlessly integrate your Java applications with WooCommerce using our REST API client! 🚀
4
+
This library provides an intuitive and developer-friendly way to interact with the latest **WooCommerce REST API (v3)**, allowing seamless access to store data and operations.
5
5
6
6
---
7
7
8
-
> ⚠️ **Note: This is a development version!**
9
-
>
10
-
> The API client is under development and will be gradually expanded to cover the key API functionalities of the commerce engine.
8
+
> ⚠️ **Note: This is an early development version!**
9
+
> We are actively expanding the API coverage to support more WooCommerce features.
10
+
> Contributions and feedback are welcome!
11
11
12
12
---
13
13
14
+
## 🚀 Quick Start
14
15
15
-
## Setup
16
-
1. Download this project and build it to create a new artifact in the local Maven repository using the following command:
17
-
```
16
+
### 1️⃣ Install
17
+
Clone this repository and build the library using Maven:
18
+
19
+
```sh
18
20
mvn clean install
19
-
```
20
-
2. After a successful build, you can use the newly created `woocommerce-api-client` artifact as a dependency in your Java project.:
21
+
```
22
+
23
+
After a successful build, you can add the generated artifact as a dependency in your Java project:
24
+
21
25
```xml
22
26
<dependency>
23
27
<groupId>wtx.woocommerce</groupId>
@@ -26,53 +30,48 @@ mvn clean install
26
30
</dependency>
27
31
```
28
32
29
-
## Usage
30
-
Below is an example usage of the WooCommerceApiClient:
0 commit comments