charon-http
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.harvies.charon</groupId> <artifactId>charon-http</artifactId> <version>0.0.8</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"> <parent> <artifactId>charon-parent</artifactId> <groupId>io.github.harvies.charon</groupId> <version>0.0.8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>charon-http</artifactId> <dependencies> <dependency> <groupId>io.github.harvies.charon</groupId> <artifactId>charon-core</artifactId> </dependency> <!-- http --> <dependency> <groupId>net.dongliu</groupId> <artifactId>requests</artifactId> </dependency> <!-- html --> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <scope>provided</scope> </dependency> <!-- xml --> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> <scope>provided</scope> </dependency> <!-- rss --> <dependency> <groupId>com.rometools</groupId> <artifactId>rome</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>