2007-05-20 16:36:28 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
$HeadURL$
|
|
|
|
$Revision$
|
|
|
|
$Date$
|
|
|
|
|
|
|
|
====================================================================
|
|
|
|
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.
|
|
|
|
====================================================================
|
|
|
|
|
|
|
|
This software consists of voluntary contributions made by many
|
|
|
|
individuals on behalf of the Apache Software Foundation. For more
|
|
|
|
information on the Apache Software Foundation, please see
|
|
|
|
<http://www.apache.org />.
|
|
|
|
-->
|
|
|
|
<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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>project</artifactId>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<version>4.0</version>
|
2008-01-06 08:08:58 -05:00
|
|
|
<relativePath>../project/pom.xml</relativePath>
|
2007-05-20 16:36:28 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
2007-06-23 16:52:31 -04:00
|
|
|
<artifactId>httpcomponents-client</artifactId>
|
2007-05-20 16:36:28 -04:00
|
|
|
<name>HttpComponents Client</name>
|
2008-08-23 06:30:46 -04:00
|
|
|
<version>4.0-beta2-SNAPSHOT</version>
|
2007-05-20 16:36:28 -04:00
|
|
|
<description>Components to build client side HTTP services</description>
|
2007-12-17 08:54:38 -05:00
|
|
|
<url>http://hc.apache.org/httpcomponents-client</url>
|
2008-04-27 17:29:04 -04:00
|
|
|
<inceptionYear>1999</inceptionYear>
|
2007-05-20 16:36:28 -04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>Apache Software Foundation</name>
|
|
|
|
<url>http://www.apache.org/</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License</name>
|
|
|
|
<url>LICENSE.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>Jira</system>
|
|
|
|
<url>http://issues.apache.org/jira/browse/HTTPCLIENT</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2008-08-23 06:30:46 -04:00
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk</connection>
|
|
|
|
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk</developerConnection>
|
|
|
|
<url>http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk</url>
|
2007-05-20 16:36:28 -04:00
|
|
|
</scm>
|
|
|
|
|
2008-02-11 11:33:39 -05:00
|
|
|
<properties>
|
2008-06-20 14:19:55 -04:00
|
|
|
<httpcore.version>4.0-beta2</httpcore.version>
|
2008-02-11 11:33:39 -05:00
|
|
|
<commons-logging.version>1.1.1</commons-logging.version>
|
|
|
|
<commons-codec.version>1.3</commons-codec.version>
|
2008-02-12 15:06:50 -05:00
|
|
|
<commons-io.version>1.2</commons-io.version>
|
2008-08-19 16:47:00 -04:00
|
|
|
<mime4j.version>0.4</mime4j.version>
|
2008-04-27 17:29:04 -04:00
|
|
|
<junit.version>3.8.2</junit.version>
|
2008-02-11 11:33:39 -05:00
|
|
|
</properties>
|
|
|
|
|
2007-05-20 16:36:28 -04:00
|
|
|
<modules>
|
|
|
|
<module>module-client</module>
|
2008-02-11 11:11:43 -05:00
|
|
|
<module>module-httpmime</module>
|
2008-09-10 17:56:35 -04:00
|
|
|
<module>module-osgi-bundle</module>
|
2007-05-20 16:36:28 -04:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2008-05-06 14:00:39 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<configuration>
|
2007-12-17 08:54:38 -05:00
|
|
|
<tagBase>https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/</tagBase>
|
2007-05-20 16:36:28 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-07-09 06:33:18 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/bin-unix.xml</descriptor>
|
|
|
|
<descriptor>src/main/assembly/bin-win.xml</descriptor>
|
2007-07-10 10:08:15 -04:00
|
|
|
<descriptor>src/main/assembly/bin-with-deps-unix.xml</descriptor>
|
|
|
|
<descriptor>src/main/assembly/bin-with-deps-win.xml</descriptor>
|
2007-07-09 06:33:18 -04:00
|
|
|
<descriptor>src/main/assembly/src-unix.xml</descriptor>
|
|
|
|
<descriptor>src/main/assembly/src-win.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clover-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<flushPolicy>threaded</flushPolicy>
|
|
|
|
<flushInterval>100</flushInterval>
|
|
|
|
<targetPercentage>50%</targetPercentage>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>site</id>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>instrument</goal>
|
|
|
|
<goal>aggregate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>project-team</report>
|
|
|
|
<report>mailing-list</report>
|
|
|
|
<report>issue-tracking</report>
|
|
|
|
<report>scm</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clover-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<jdk>1.5</jdk>
|
|
|
|
<licenseLocation>${clover.license}</licenseLocation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
</project>
|