2009-02-22 13:42:25 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-05-20 16:36:28 -04:00
|
|
|
<!--
|
|
|
|
====================================================================
|
|
|
|
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 />.
|
2013-09-09 15:32:04 -04:00
|
|
|
--><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">
|
2007-05-20 16:36:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2016-01-16 10:16:44 -05:00
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5-parent</artifactId>
|
2020-02-22 03:56:16 -05:00
|
|
|
<version>5.0.1-SNAPSHOT</version>
|
2007-05-20 16:36:28 -04:00
|
|
|
</parent>
|
2016-01-16 10:16:44 -05:00
|
|
|
<artifactId>httpclient5</artifactId>
|
2013-08-09 11:57:15 -04:00
|
|
|
<name>Apache HttpClient</name>
|
2016-01-16 10:16:44 -05:00
|
|
|
<description>Apache HttpComponents Client</description>
|
2007-12-17 08:54:38 -05:00
|
|
|
<url>http://hc.apache.org/httpcomponents-client</url>
|
2010-10-22 17:47:45 -04:00
|
|
|
<packaging>jar</packaging>
|
2007-05-20 16:36:28 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-01-12 15:43:36 -05:00
|
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
|
|
<artifactId>httpcore5</artifactId>
|
2010-05-12 15:23:18 -04:00
|
|
|
<scope>compile</scope>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-02-23 09:32:43 -05:00
|
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
|
|
<artifactId>httpcore5-h2</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-01-10 04:59:00 -05:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2010-05-12 15:23:18 -04:00
|
|
|
<scope>compile</scope>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependency>
|
2018-12-10 07:18:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.conscrypt</groupId>
|
|
|
|
<artifactId>conscrypt-openjdk-uber</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-09-24 17:20:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
|
|
<artifactId>httpcore5-reactive</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.reactivex.rxjava2</groupId>
|
|
|
|
<artifactId>rxjava</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-01-10 04:59:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-10-31 19:24:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-05-20 16:36:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2010-05-12 15:23:18 -04:00
|
|
|
<scope>compile</scope>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-05-11 16:36:26 -04:00
|
|
|
<dependency>
|
2011-02-25 07:13:16 -05:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2010-05-11 16:36:26 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2007-07-01 13:55:46 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
2007-07-09 09:18:41 -04:00
|
|
|
<include>**/*.properties</include>
|
2007-07-01 13:55:46 -04:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2007-05-20 16:36:28 -04:00
|
|
|
<plugins>
|
2014-09-08 09:37:43 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.googlecode.maven-download-plugin</groupId>
|
|
|
|
<artifactId>download-maven-plugin</artifactId>
|
2018-11-03 09:25:23 -04:00
|
|
|
<version>1.4.1</version>
|
2014-09-08 09:37:43 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>download-public-suffix-list</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>wget</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<url>https://publicsuffix.org/list/effective_tld_names.dat</url>
|
|
|
|
<outputDirectory>${project.build.outputDirectory}/mozilla</outputDirectory>
|
|
|
|
<outputFileName>public-suffix-list.txt</outputFileName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-08-19 15:14:28 -04:00
|
|
|
<plugin>
|
2015-08-27 00:21:58 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-02-24 05:23:53 -05:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-04-06 04:59:23 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-resources</id>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/target/site/examples</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/test/java/org/apache/hc/client5/http/examples</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
|
2009-06-06 18:03:11 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
2011-02-06 21:00:12 -05:00
|
|
|
<!-- reduce console output. Can override with -Dquiet=false -->
|
|
|
|
<quiet>true</quiet>
|
2013-08-27 08:04:15 -04:00
|
|
|
<source>${maven.compiler.source}</source>
|
2009-06-06 18:03:11 -04:00
|
|
|
<links>
|
2017-01-29 14:22:20 -05:00
|
|
|
<link>http://docs.oracle.com/javase/7/docs/api/</link>
|
2018-08-30 04:36:11 -04:00
|
|
|
<link>http://hc.apache.org/httpcomponents-core-5.0.x/httpcore5/apidocs/</link>
|
|
|
|
<link>http://hc.apache.org/httpcomponents-core-5.0.x/httpcore5-h2/apidocs/</link>
|
2009-06-06 18:03:11 -04:00
|
|
|
</links>
|
|
|
|
</configuration>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>javadoc</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugin>
|
2009-06-06 18:03:11 -04:00
|
|
|
|
2013-08-27 08:04:46 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>dependencies</report>
|
|
|
|
<report>dependency-info</report>
|
|
|
|
<report>summary</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
|
2009-06-06 18:03:11 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2014-09-08 09:37:43 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.googlecode.maven-download-plugin</groupId>
|
|
|
|
<artifactId>download-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<overwrite>true</overwrite>
|
|
|
|
<skipCache>true</skipCache>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2007-05-20 16:36:28 -04:00
|
|
|
</project>
|