2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-08 03:39:05 -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/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-04-20 08:23:00 -04:00
|
|
|
<artifactId>apache-httpclient</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
2022-04-20 08:23:00 -04:00
|
|
|
<name>apache-httpclient</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2023-12-27 11:47:23 -05:00
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-02-02 12:04:40 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.core5</groupId>
|
|
|
|
<artifactId>httpcore5</artifactId>
|
|
|
|
<version>${httpcore5.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5-fluent</artifactId>
|
|
|
|
<version>${httpclient5-fluent.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5</artifactId>
|
|
|
|
<version>${httpclient5.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-31 13:44:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
<artifactId>mockserver-netty</artifactId>
|
|
|
|
<version>${mockserver.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
2023-11-20 04:44:00 -05:00
|
|
|
<groupId>org.wiremock</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>wiremock</artifactId>
|
|
|
|
<version>${wiremock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2022-04-20 08:23:00 -04:00
|
|
|
<finalName>apache-httpclient</finalName>
|
2019-10-31 21:43:47 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2023-05-31 13:44:00 -04:00
|
|
|
<mockserver.version>5.6.1</mockserver.version>
|
2023-11-20 04:44:00 -05:00
|
|
|
<wiremock.version>3.3.1</wiremock.version>
|
2023-02-02 12:04:40 -05:00
|
|
|
<!-- http client & core 5 -->
|
2023-12-07 05:27:02 -05:00
|
|
|
<httpcore5.version>5.2.2</httpcore5.version>
|
|
|
|
<httpclient5.version>5.2.2</httpclient5.version>
|
|
|
|
<httpclient5-fluent.version>5.2.2</httpclient5-fluent.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2023-02-10 11:19:24 -05:00
|
|
|
</project>
|