holon-async-http
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.holon-platform.core</groupId>
<artifactId>holon-async-http</artifactId>
<version>6.0.2</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.holon-platform.core</groupId>
<artifactId>holon-root</artifactId>
<version>6.0.2</version>
</parent>
<artifactId>holon-async-http</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Holon asyncronous HTTP operations API</description>
<url>https://holon-platform.com</url>
<dependencies>
<!-- Holon core -->
<dependency>
<groupId>com.holon-platform.core</groupId>
<artifactId>holon-http</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- JDK9 Automatic-Module-Name -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>com.holonplatform.async.http</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>