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-12-13 20:15:52 -05:00
|
|
|
<version>4.0-beta3-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>
|
2009-02-24 05:23:53 -05:00
|
|
|
<connection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk</developerConnection>
|
|
|
|
<url>https://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>
|
2009-02-22 13:42:25 -05:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2009-02-25 04:23:29 -05:00
|
|
|
<httpcore.version>4.0</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-10-18 13:14:05 -04:00
|
|
|
<mime4j.version>0.5</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>
|
2009-02-22 13:48:08 -05:00
|
|
|
<!-- Add NOTICE and LICENSE to generated JAR -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>process</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<resourceBundles>
|
|
|
|
<resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
|
|
|
|
</resourceBundles>
|
|
|
|
<properties>
|
|
|
|
<addLicense>true</addLicense>
|
|
|
|
</properties>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
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>
|
2008-12-02 14:14:41 -05:00
|
|
|
<configuration>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
</configuration>
|
2007-05-20 16:36:28 -04:00
|
|
|
</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>
|
2008-12-02 14:14:41 -05:00
|
|
|
<descriptor>src/main/assembly/bin.xml</descriptor>
|
|
|
|
<descriptor>src/main/assembly/osgi-bin.xml</descriptor>
|
|
|
|
<descriptor>src/main/assembly/bin-with-deps.xml</descriptor>
|
|
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
2007-07-09 06:33:18 -04:00
|
|
|
</descriptors>
|
2008-12-02 14:14:41 -05:00
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<ant antfile="src/main/assembly/build.xml" target="fixzip">
|
|
|
|
<property name="target" value="${project.build.directory}" />
|
|
|
|
<property name="package.zip" value="${pom.artifactId}-${pom.version}-bin.zip" />
|
|
|
|
</ant>
|
|
|
|
<ant antfile="src/main/assembly/build.xml" target="fixzip">
|
|
|
|
<property name="target" value="${project.build.directory}" />
|
|
|
|
<property name="package.zip" value="${pom.artifactId}-${pom.version}-osgi-bin.zip" />
|
|
|
|
</ant>
|
|
|
|
<ant antfile="src/main/assembly/build.xml" target="fixzip">
|
|
|
|
<property name="target" value="${project.build.directory}" />
|
|
|
|
<property name="package.zip" value="${pom.artifactId}-${pom.version}-bin-with-dependencies.zip" />
|
|
|
|
</ant>
|
|
|
|
<ant antfile="src/main/assembly/build.xml" target="fixzip">
|
|
|
|
<property name="target" value="${project.build.directory}" />
|
|
|
|
<property name="package.zip" value="${pom.artifactId}-${pom.version}-src.zip" />
|
|
|
|
</ant>
|
|
|
|
<ant antfile="src/main/assembly/build.xml" target="fixtar">
|
|
|
|
<property name="target" value="${project.build.directory}" />
|
|
|
|
<property name="package.tar" value="${pom.artifactId}-${pom.version}-bin-with-dependencies.tar.gz" />
|
|
|
|
</ant>
|
|
|
|
</tasks>
|
2007-07-09 06:33:18 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
<plugin>
|
2009-02-24 18:00:54 -05:00
|
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clover2-plugin</artifactId>
|
2007-05-20 16:36:28 -04:00
|
|
|
<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>
|
2009-02-24 18:00:54 -05:00
|
|
|
<goal>save-history</goal>
|
2007-05-20 16:36:28 -04:00
|
|
|
</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-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
2008-10-27 12:09:04 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>clirr-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
</project>
|