You can download cs-http-client-0.1.67.jar in this page.
The Apache License, Version 2.0
cs-http-client-0.1.67.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.cloudslang.content/cs-http-client/pom.properties META-INF/maven/io.cloudslang.content/cs-http-client/pom.xml io.cloudslang.content.httpclient.CSHttpClient.class io.cloudslang.content.httpclient.HttpClientAction.class io.cloudslang.content.httpclient.HttpClientInputs.class io.cloudslang.content.httpclient.HttpComponents.class io.cloudslang.content.httpclient.URLEncoderAction.class io.cloudslang.content.httpclient.build.ContentTypeBuilder.class io.cloudslang.content.httpclient.build.ContextBuilder.class io.cloudslang.content.httpclient.build.CookieStoreBuilder.class io.cloudslang.content.httpclient.build.EntityBuilder.class io.cloudslang.content.httpclient.build.HeadersBuilder.class io.cloudslang.content.httpclient.build.RequestBuilder.class io.cloudslang.content.httpclient.build.RequestConfigBuilder.class io.cloudslang.content.httpclient.build.URIBuilder.class io.cloudslang.content.httpclient.build.UrlEncodeException.class io.cloudslang.content.httpclient.build.Utils.class io.cloudslang.content.httpclient.build.auth.AuthSchemeProviderLookupBuilder.class io.cloudslang.content.httpclient.build.auth.AuthTypes.class io.cloudslang.content.httpclient.build.auth.CredentialsProviderBuilder.class io.cloudslang.content.httpclient.build.auth.JCIFSEngine.class io.cloudslang.content.httpclient.build.auth.KrbHttpLoginModule.class io.cloudslang.content.httpclient.build.conn.ConnectionManagerBuilder.class io.cloudslang.content.httpclient.build.conn.SSLConnectionSocketFactoryBuilder.class io.cloudslang.content.httpclient.consume.FinalLocationConsumer.class io.cloudslang.content.httpclient.consume.HeadersConsumer.class io.cloudslang.content.httpclient.consume.HttpResponseConsumer.class io.cloudslang.content.httpclient.consume.StatusConsumer.class io.cloudslang.content.httpclient.execute.HttpClientExecutor.class
cs-http-client-0.1.67.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- (c) Copyright 2014 Hewlett-Packard Development Company, L.P. All rights reserved. This program and the accompanying materials are made available under the terms of the Apache License v2.0 which accompany this distribution. The Apache License is available at http://www.apache.org/licenses/LICENSE-2.0 --> <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> <groupId>io.cloudslang.content</groupId> <artifactId>cs-http-client</artifactId> <version>0.1.67</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>An HTTP client for CloudSlang</description> <url>https://github.com/CloudSlang/score-actions</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:https://CloudSlang/score-actions.git</connection> <developerConnection>scm:git:git@github.com:CloudSlang/score-actions.git</developerConnection> <url>https://github.com/CloudSlang/score-actions.git</url> <tag>master</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <name>Maven Central staging repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Maven Central snapshots repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <developers> <developer> <name>Mihai David</name> <email>mihai.david@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> <developer> <name>Adina Tusa</name> <email>adina.tusa@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> <developer> <name>Avi Moradi</name> <email>avi.moradi@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>default-profile</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </build> </profile> <profile> <id>release-internal-profile</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </build> </profile> <profile> <id>release-external-profile</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.hp.score.sdk</groupId> <artifactId>score-content-sdk</artifactId> <version>1.10.6</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.6</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.3.2</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.3.6</version> </dependency> <dependency> <groupId>jcifs</groupId> <artifactId>jcifs</artifactId> <version>1.3.17</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> </dependency> <!--<dependency> --> <!--<groupId>commons-logging</groupId> --> <!--<artifactId>commons-logging</artifactId> --> <!--<version>1.2</version> --> <!--</dependency> --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.18.0-GA</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>io.cloudslang.content</groupId> <artifactId>cs-http-client</artifactId> <version>0.1.67</version> </dependency>
If you think the following cs-http-client-0.1.67.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download cs-http-client-0.1.67.jar file