toolbox-http
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.hughwick</groupId>
<artifactId>toolbox-http</artifactId>
<version>3.0.20</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>
<parent>
<groupId>com.github.hughwick</groupId>
<artifactId>toolbox-parent</artifactId>
<version>3.0.20</version>
</parent>
<name>Toolbox http</name>
<artifactId>toolbox-http</artifactId>
<packaging>jar</packaging>
<description>toolbox工具类HTTP包</description>
<dependencies>
<dependency>
<groupId>com.github.hughwick</groupId>
<artifactId>toolbox-json</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
<dependency>
<groupId>com.github.hughwick</groupId>
<artifactId>toolbox-crypto</artifactId>
<version>${project.parent.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.20.0</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/cn.idev.excel/fastexcel -->
<dependency>
<groupId>cn.idev.excel</groupId>
<artifactId>fastexcel</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>