2011-08-13 04:31:50 -04:00
|
|
|
<?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.
|
|
|
|
====================================================================
|
|
|
|
|
|
|
|
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">
|
2011-08-13 04:31:50 -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-10-01 05:07:38 -04:00
|
|
|
<version>5.5-alpha1-SNAPSHOT</version>
|
2011-08-13 04:31:50 -04:00
|
|
|
</parent>
|
2016-01-16 10:16:44 -05:00
|
|
|
<artifactId>httpclient5-fluent</artifactId>
|
|
|
|
<name>Apache HttpClient Fluent</name>
|
2011-10-31 18:50:56 -04:00
|
|
|
<inceptionYear>2011</inceptionYear>
|
2016-01-16 10:16:44 -05:00
|
|
|
<description>Apache HttpComponents Client Fluent</description>
|
2011-08-13 04:31:50 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-07-04 09:38:27 -04:00
|
|
|
<properties>
|
|
|
|
<Automatic-Module-Name>org.apache.httpcomponents.client5.httpclient5.fluent</Automatic-Module-Name>
|
|
|
|
</properties>
|
|
|
|
|
2011-08-13 04:31:50 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-01-16 10:16:44 -05:00
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5</artifactId>
|
2011-08-13 04:31:50 -04:00
|
|
|
</dependency>
|
2011-08-22 15:29:33 -04:00
|
|
|
<dependency>
|
2016-01-16 10:16:44 -05:00
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5</artifactId>
|
2011-08-22 15:29:33 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
</dependency>
|
2018-01-10 04:59:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2011-09-13 08:29:41 -04:00
|
|
|
<dependency>
|
2016-10-31 19:24:37 -04:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
2018-01-10 04:59:00 -05:00
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
2016-10-31 19:24:37 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<scope>test</scope>
|
2011-09-13 08:29:41 -04:00
|
|
|
</dependency>
|
2011-08-13 04:31:50 -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>
|
2011-08-13 04:31:50 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<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>
|
2011-08-13 04:31:50 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2021-02-10 16:06:51 -05:00
|
|
|
</project>
|