demeter-http-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.panforge.demeter</groupId>
<artifactId>demeter-http-client</artifactId>
<version>2.1.0</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.panforge.demeter</groupId>
<artifactId>demeter-parent</artifactId>
<version>2.1.0</version>
</parent>
<artifactId>demeter-http-client</artifactId>
<packaging>jar</packaging>
<name>Demeter OAI-PMH HTTP client.</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>demeter-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.panforge</groupId>
<artifactId>robots-http</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mock-server</groupId>
<artifactId>mockserver-netty</artifactId>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<aggregate>true</aggregate>
<doctitle>Demeter HTTP client ver. ${project.version}</doctitle>
<windowtitle>Demeter HTTP client ver. ${project.version}</windowtitle>
<links>
<link>https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/</link>
<link>https://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>