1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"). 6 ~ You may not use this file except in compliance with the License. 7 ~ A copy of the License is located at 8 ~ 9 ~ http://aws.amazon.com/apache2.0 10 ~ 11 ~ or in the "license" file accompanying this file. This file is distributed 12 ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 13 ~ express or implied. See the License for the specific language governing 14 ~ permissions and limitations under the License. 15 --> 16 17<project xmlns="http://maven.apache.org/POM/4.0.0" 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 20 <modelVersion>4.0.0</modelVersion> 21 <parent> 22 <artifactId>http-clients</artifactId> 23 <groupId>software.amazon.awssdk</groupId> 24 <version>2.24.3</version> 25 </parent> 26 27 <artifactId>apache-client</artifactId> 28 <name>AWS Java SDK :: HTTP Clients :: Apache</name> 29 30 <dependencies> 31 <dependency> 32 <groupId>software.amazon.awssdk</groupId> 33 <artifactId>http-client-spi</artifactId> 34 <version>${awsjavasdk.version}</version> 35 </dependency> 36 <dependency> 37 <groupId>software.amazon.awssdk</groupId> 38 <artifactId>metrics-spi</artifactId> 39 <version>${awsjavasdk.version}</version> 40 </dependency> 41 <dependency> 42 <groupId>software.amazon.awssdk</groupId> 43 <artifactId>utils</artifactId> 44 <version>${awsjavasdk.version}</version> 45 </dependency> 46 <dependency> 47 <groupId>software.amazon.awssdk</groupId> 48 <artifactId>annotations</artifactId> 49 <version>${awsjavasdk.version}</version> 50 </dependency> 51 <dependency> 52 <groupId>org.apache.httpcomponents</groupId> 53 <artifactId>httpclient</artifactId> 54 </dependency> 55 <dependency> 56 <groupId>org.apache.httpcomponents</groupId> 57 <artifactId>httpcore</artifactId> 58 </dependency> 59 <dependency> 60 <groupId>commons-codec</groupId> 61 <artifactId>commons-codec</artifactId> 62 </dependency> 63 64 <dependency> 65 <groupId>software.amazon.awssdk</groupId> 66 <artifactId>http-client-tests</artifactId> 67 <version>${awsjavasdk.version}</version> 68 <scope>test</scope> 69 </dependency> 70 <dependency> 71 <groupId>org.junit.jupiter</groupId> 72 <artifactId>junit-jupiter</artifactId> 73 <scope>test</scope> 74 </dependency> 75 <dependency> 76 <groupId>org.junit.vintage</groupId> 77 <artifactId>junit-vintage-engine</artifactId> 78 <scope>test</scope> 79 </dependency> 80 <dependency> 81 <groupId>org.assertj</groupId> 82 <artifactId>assertj-core</artifactId> 83 <scope>test</scope> 84 </dependency> 85 <dependency> 86 <groupId>org.hamcrest</groupId> 87 <artifactId>hamcrest-all</artifactId> 88 <scope>test</scope> 89 </dependency> 90 <dependency> 91 <groupId>com.github.tomakehurst</groupId> 92 <artifactId>wiremock-jre8</artifactId> 93 <scope>test</scope> 94 </dependency> 95 </dependencies> 96 97 <build> 98 <plugins> 99 <plugin> 100 <groupId>org.apache.maven.plugins</groupId> 101 <artifactId>maven-jar-plugin</artifactId> 102 <configuration> 103 <archive> 104 <manifestEntries> 105 <Automatic-Module-Name>software.amazon.awssdk.http.apache</Automatic-Module-Name> 106 </manifestEntries> 107 </archive> 108 </configuration> 109 </plugin> 110 </plugins> 111 </build> 112 113</project> 114