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
## Install With [Maven](https://mvnrepository.com/artifact/com.konghq/unirest-java)[:](https://repo.maven.apache.org/maven2/com/konghq/unirest-java/)
10
+
### 🚨 Attention JSON users 🚨
11
+
Unirest now uses a modular json system. If you want to use JSON you MUST include in the pom the JSON implementation you wish to use. This can be either Jackson or Gson.
12
+
10
13
```xml
11
14
<!-- Pull in as a traditional dependency -->
12
15
<dependency>
13
16
<groupId>com.konghq</groupId>
14
17
<artifactId>unirest-java</artifactId>
15
-
<version>3.11.09</version>
18
+
<version>4.0.0-RC2</version>
16
19
</dependency>
17
20
18
21
<!-- OR as a snazzy new standalone jar with shaded dependencies -->
19
22
<dependency>
20
23
<groupId>com.konghq</groupId>
21
24
<artifactId>unirest-java</artifactId>
22
-
<version>3.11.09</version>
25
+
<version>4.0.0-RC2</version>
23
26
<classifier>standalone</classifier>
24
27
</dependency>
25
28
29
+
<!-- ONE of the following, if BOTH are on the path Unirest will pick the first it finds -->
0 commit comments