xhttp-json-jackson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.dongliu</groupId>
<artifactId>xhttp-json-jackson</artifactId>
<version>2.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>xhttp-json-jackson</artifactId>
<name>HTTP Json Handle with Jackson</name>
<packaging>jar</packaging>
<version>${project.parent.version}</version>
<parent>
<groupId>net.dongliu</groupId>
<artifactId>xhttp-parent</artifactId>
<version>2.1.1</version>
</parent>
<dependencies>
<dependency>
<groupId>net.dongliu</groupId>
<artifactId>xhttp</artifactId>
</dependency>
<dependency>
<groupId>net.dongliu</groupId>
<artifactId>xhttp-json-api</artifactId>
</dependency>
<dependency>
<groupId>net.dongliu</groupId>
<artifactId>commons</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
</dependencies>
</project>