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