Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Kong/unirest-java

Unirest in Java: Simplified, lightweight HTTP client library.
https://github.com/Kong/unirest-java

Last synced: 2 months ago
JSON representation

Unirest in Java: Simplified, lightweight HTTP client library.

Awesome Lists containing this project

README

        

# Unirest for Java

[![Actions Status](https://github.com/kong/unirest-java/workflows/Verify/badge.svg)](https://github.com/kong/unirest-java/actions)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.konghq/unirest-java-parent/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.kong/unirest-java)
[![Javadocs](http://www.javadoc.io/badge/com.konghq/unirest-java-core.svg)](http://www.javadoc.io/doc/com.konghq/unirest-java)

## Unirest 4
Unirest 4 is build on modern Java standards, and as such requires at least Java 11.

Unirest 4's dependencies are fully modular, and have been moved to new Maven coordinates to avoid conflicts with the previous versions.
You can use a maven bom to manage the modules:

### Install With Maven

```xml




com.konghq
unirest-java-bom
4.4.0
pom
import



com.konghq
unirest-java-core





com.konghq
unirest-modules-gson



com.konghq
unirest-modules-jackson

```

#### 🚨 Attention JSON users 🚨
Under Unirest 4, core no longer comes with ANY transient dependencies, and because Java itself lacks a JSON parser you MUST declare a JSON implementation if you wish to do object mappings or use Json objects.

## Upgrading from Previous Versions
See the [Upgrade Guide](UPGRADE_GUIDE.md)

## ChangeLog
See the [Change Log](CHANGELOG.md) for recent changes.

## Documentation
Our [Documentation](http://kong.github.io/unirest-java/)

## Unirest 3
### Maven
```xml

com.konghq
unirest-java
3.14.1

```