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 />.
|
2021-01-09 15:51:14 -05: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/xsd/maven-4.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>
|
2024-06-26 08:15:11 -04:00
|
|
|
<version>5.4-beta2-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>
|
2010-10-22 17:47:45 -04:00
|
|
|
<packaging>jar</packaging>
|
2007-05-20 16:36:28 -04:00
|
|
|
|
2020-07-04 09:38:27 -04:00
|
|
|
<properties>
|
|
|
|
<Automatic-Module-Name>org.apache.httpcomponents.client5.httpclient5</Automatic-Module-Name>
|
|
|
|
</properties>
|
|
|
|
|
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>
|
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>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-01-10 04:59:00 -05:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
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>
|
|
|
|
<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>
|
2022-05-18 09:18:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.brotli</groupId>
|
|
|
|
<artifactId>dec</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2007-05-20 16:36:28 -04:00
|
|
|
<dependency>
|
2021-11-18 00:40:38 -05:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest</artifactId>
|
2007-05-20 16:36:28 -04:00
|
|
|
<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>
|
2024-08-23 08:36:05 -04:00
|
|
|
<version>1.9.0</version>
|
2014-09-08 09:37:43 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>download-public-suffix-list</id>
|
2020-09-21 05:43:02 -04:00
|
|
|
<phase>generate-resources</phase>
|
2014-09-08 09:37:43 -04:00
|
|
|
<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>
|
2019-04-06 04:59:23 -04:00
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
2013-08-27 08:04:46 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
2021-01-09 15:51:14 -05:00
|
|
|
<report>index</report>
|
2013-08-27 08:04:46 -04:00
|
|
|
<report>dependencies</report>
|
|
|
|
<report>dependency-info</report>
|
|
|
|
<report>summary</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2014-09-08 09:37:43 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
2020-09-21 05:43:02 -04:00
|
|
|
<id>apache-release</id>
|
2014-09-08 09:37:43 -04:00
|
|
|
<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>
|
|
|
|
|
2022-06-07 08:42:03 -04:00
|
|
|
</project>
|