Maven Wagon HTTP Shared Library.
Shared Library for the wagon-http, and wagon-http-lightweight wagon providers..
Here is the list of declaration for wagon-http-shared. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-http-shared</artifactId> <version>1.0-beta-7</version> </dependency>
If you think this Maven repository POM file listing for wagon-http-shared is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The wagon-http-shared-1.0-beta-7 has 4 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 |
---|---|---|
Http | commons-httpclient 3.1 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 430 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
The following packages are defined in the wagon-http-shared-1.0-beta-7.jar
org.apache.maven.wagon.shared.http
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache 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.apache.org/licenses/LICENSE-2.0 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-providers</artifactId> <version>1.0-beta-7</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>wagon-http-shared</artifactId> <name>Maven Wagon HTTP Shared Library</name> <description> Shared Library for the wagon-http, and wagon-http-lightweight wagon providers. </description> <dependencies> <dependency> <groupId>nekohtml</groupId> <artifactId>xercesMinimal</artifactId> <version>1.9.6.2</version> </dependency> <dependency> <groupId>nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>1.9.6.2</version> <exclusions> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> <!-- The version of commons-logging that comes transitively has class loader problems. So we exclude it here and add a newer version below. --> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- This dependency is here to upgrade to a version of commons-logging that is newer than the one that comes transitively from commons-httpclient above. --> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> </dependencies> </project>