Kuali Http Client.
Here is the list of declaration for kuali-httpclient. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-httpclient</artifactId> <version>1.0.0</version> </dependency>
If you think this Maven repository POM file listing for kuali-httpclient is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The kuali-httpclient-1.0.0 has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Http | httpclient 4.3.2 HttpComponents Client | 27 |
Log | slf4j-api 1.7.5 The slf4j API | 610 |
Log | jcl-over-slf4j 1.7.5 JCL 1.1.1 implemented over SLF4J | 84 |
Log | slf4j-log4j12 1.7.5 SLF4J LOG4J-12 Binding | 51 |
The following packages are defined in the kuali-httpclient-1.0.0.jar
org.kuali.common.http.json org.kuali.common.http.model org.kuali.common.http.service org.kuali.common.http.spring
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2013-2014 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.opensource.org/licenses/ecl2.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <parent> <groupId>org.kuali.pom</groupId> <artifactId>kuali-common</artifactId> <version>3.4.4</version> </parent> <groupId>org.kuali.common</groupId> <artifactId>kuali-httpclient</artifactId> <version>1.0.0</version> <name>Kuali Http Client</name> <description>Kuali Http Client</description> <url>http://${kuali.site.hostname}/common/${project.artifactId}/${project.version}</url> <inceptionYear>2014</inceptionYear> <scm> <connection>scm:${project.scm.vendor}:https://svn.kuali.org/repos/foundation/tags/kuali-httpclient-1.0.0</connection> <developerConnection>scm:${project.scm.vendor}:https://svn.kuali.org/repos/foundation/tags/kuali-httpclient-1.0.0</developerConnection> <url>https://svn.kuali.org/repos/foundation/tags/kuali-httpclient-1.0.0</url> </scm> <properties> <junit.version>4.11</junit.version> <slf4j.version>1.7.5</slf4j.version> <spring.version>3.2.7.RELEASE</spring.version> <httpclient.version>4.3.2</httpclient.version> <jackson.version>2.3.1</jackson.version> <jackson-databind.version>${jackson.version}</jackson-databind.version> <jackson-datatype-guava.version>${jackson.version}</jackson-datatype-guava.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-util</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${httpclient.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-databind.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-guava</artifactId> <version>${jackson-datatype-guava.version}</version> </dependency> </dependencies> </project>