xref: /aosp_15_r20/external/aws-sdk-java-v2/http-clients/pom.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
1*8a52c783SCole Faust<?xml version="1.0" encoding="UTF-8"?>
2*8a52c783SCole Faust
3*8a52c783SCole Faust<!--
4*8a52c783SCole Faust  ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
5*8a52c783SCole Faust  ~
6*8a52c783SCole Faust  ~ Licensed under the Apache License, Version 2.0 (the "License").
7*8a52c783SCole Faust  ~ You may not use this file except in compliance with the License.
8*8a52c783SCole Faust  ~ A copy of the License is located at
9*8a52c783SCole Faust  ~
10*8a52c783SCole Faust  ~  http://aws.amazon.com/apache2.0
11*8a52c783SCole Faust  ~
12*8a52c783SCole Faust  ~ or in the "license" file accompanying this file. This file is distributed
13*8a52c783SCole Faust  ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
14*8a52c783SCole Faust  ~ express or implied. See the License for the specific language governing
15*8a52c783SCole Faust  ~ permissions and limitations under the License.
16*8a52c783SCole Faust  -->
17*8a52c783SCole Faust
18*8a52c783SCole Faust<project xmlns="http://maven.apache.org/POM/4.0.0"
19*8a52c783SCole Faust         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20*8a52c783SCole Faust         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21*8a52c783SCole Faust    <parent>
22*8a52c783SCole Faust        <artifactId>aws-sdk-java-pom</artifactId>
23*8a52c783SCole Faust        <groupId>software.amazon.awssdk</groupId>
24*8a52c783SCole Faust        <version>2.24.3</version>
25*8a52c783SCole Faust    </parent>
26*8a52c783SCole Faust    <modelVersion>4.0.0</modelVersion>
27*8a52c783SCole Faust
28*8a52c783SCole Faust    <artifactId>http-clients</artifactId>
29*8a52c783SCole Faust    <name>AWS Java SDK :: HTTP Clients</name>
30*8a52c783SCole Faust    <packaging>pom</packaging>
31*8a52c783SCole Faust
32*8a52c783SCole Faust    <modules>
33*8a52c783SCole Faust        <module>apache-client</module>
34*8a52c783SCole Faust        <module>aws-crt-client</module>
35*8a52c783SCole Faust        <module>netty-nio-client</module>
36*8a52c783SCole Faust        <module>url-connection-client</module>
37*8a52c783SCole Faust    </modules>
38*8a52c783SCole Faust
39*8a52c783SCole Faust    <dependencyManagement>
40*8a52c783SCole Faust        <dependencies>
41*8a52c783SCole Faust            <dependency>
42*8a52c783SCole Faust                <groupId>software.amazon.awssdk</groupId>
43*8a52c783SCole Faust                <artifactId>bom-internal</artifactId>
44*8a52c783SCole Faust                <version>${project.version}</version>
45*8a52c783SCole Faust                <type>pom</type>
46*8a52c783SCole Faust                <scope>import</scope>
47*8a52c783SCole Faust            </dependency>
48*8a52c783SCole Faust        </dependencies>
49*8a52c783SCole Faust    </dependencyManagement>
50*8a52c783SCole Faust
51*8a52c783SCole Faust</project>
52