http
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.higgs</groupId>
<artifactId>http</artifactId>
<version>0.0.24</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>${project.artifactId}</name>
<artifactId>http</artifactId>
<packaging>pom</packaging>
<description>Higgs' HTTP server and client implementation</description>
<!-- Inherit most settings from parent project -->
<parent>
<groupId>io.higgs</groupId>
<artifactId>higgs</artifactId>
<relativePath>../pom.xml</relativePath>
<version>0.0.24</version>
</parent>
<modules>
<module>server</module>
<module>client</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.higgs</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.higgs</groupId>
<artifactId>core</artifactId>
</dependency>
</dependencies>
</project>