Download openstack4j-httpclient-2.11.jar file

Introduction

You can download openstack4j-httpclient-2.11.jar in this page.

License

Open Source

Type List

openstack4j-httpclient-2.11.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.pacesys.openstack4j.connectors/openstack4j-httpclient/pom.properties
META-INF/maven/org.pacesys.openstack4j.connectors/openstack4j-httpclient/pom.xml
META-INF/services/org.openstack4j.core.transport.HttpExecutorService
org.openstack4j.connectors.httpclient.HttpClientConfigInterceptor.class
org.openstack4j.connectors.httpclient.HttpClientFactory.class
org.openstack4j.connectors.httpclient.HttpCommand.class
org.openstack4j.connectors.httpclient.HttpExecutorServiceImpl.class
org.openstack4j.connectors.httpclient.HttpResponseImpl.class

Pom

openstack4j-httpclient-2.11.pom file content.

<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>
		<groupId>org.pacesys.openstack4j.connectors</groupId>
		<artifactId>openstack4j-connectors</artifactId>
		<version>2.11</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<artifactId>openstack4j-httpclient</artifactId>
	<name>OpenStack4j HttpComponents-HttpClient Connector</name>
	<url>http://github.com/gondor/openstack4j/</url>
	<packaging>jar</packaging>

	<properties>
		<httpclient-version>4.3.1</httpclient-version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.3.6</version>
		 <type>jar</type>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Bundle-Name>${project.name}</Bundle-Name>
						<Export-Package>
							org.openstack4j.connectors.httpclient
						</Export-Package>
						<Import-Package>
							!org.openstack4j.connectors.httpclient,
							*
						</Import-Package>
						<!-- 
						Required for SPI in OSGi:
						http://aries.apache.org/modules/spi-fly.html#specconf
						
						This bundle defines an implementation for following services in META-INF-services:
						org.openstack4j.core.transport.HttpExecutorService
						 -->
						<Require-Capability>
							osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"
						</Require-Capability>
						<Provide-Capability>
							osgi.serviceloader; osgi.serviceloader=org.openstack4j.core.transport.HttpExecutorService
						</Provide-Capability>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>

POM Entry

<dependency>
   <groupId>org.pacesys.openstack4j.connectors</groupId>
   <artifactId>openstack4j-httpclient</artifactId>
   <version>2.11</version>
</dependency>

Download

If you think the following openstack4j-httpclient-2.11.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download openstack4j-httpclient-2.11.jar file




PreviousNext

Related