xref: /aosp_15_r20/external/aws-sdk-java-v2/http-client-spi/pom.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
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
22    <parent>
23        <artifactId>aws-sdk-java-pom</artifactId>
24        <groupId>software.amazon.awssdk</groupId>
25        <version>2.24.3</version>
26    </parent>
27    <artifactId>http-client-spi</artifactId>
28    <name>AWS Java SDK :: HTTP Client Interface</name>
29
30    <dependencyManagement>
31        <dependencies>
32            <dependency>
33                <groupId>software.amazon.awssdk</groupId>
34                <artifactId>bom-internal</artifactId>
35                <version>${project.version}</version>
36                <type>pom</type>
37                <scope>import</scope>
38            </dependency>
39        </dependencies>
40    </dependencyManagement>
41
42    <dependencies>
43        <dependency>
44            <groupId>software.amazon.awssdk</groupId>
45            <artifactId>annotations</artifactId>
46            <version>${awsjavasdk.version}</version>
47        </dependency>
48        <dependency>
49            <groupId>software.amazon.awssdk</groupId>
50            <artifactId>utils</artifactId>
51            <version>${awsjavasdk.version}</version>
52        </dependency>
53        <dependency>
54            <groupId>software.amazon.awssdk</groupId>
55            <artifactId>metrics-spi</artifactId>
56            <version>${awsjavasdk.version}</version>
57        </dependency>
58        <dependency>
59            <groupId>org.reactivestreams</groupId>
60            <artifactId>reactive-streams</artifactId>
61            <version>${reactive-streams.version}</version>
62        </dependency>
63        <dependency>
64            <groupId>org.junit.jupiter</groupId>
65            <artifactId>junit-jupiter</artifactId>
66            <scope>test</scope>
67        </dependency>
68        <dependency>
69            <groupId>org.junit.vintage</groupId>
70            <artifactId>junit-vintage-engine</artifactId>
71            <scope>test</scope>
72        </dependency>
73        <dependency>
74            <groupId>org.assertj</groupId>
75            <artifactId>assertj-core</artifactId>
76            <scope>test</scope>
77        </dependency>
78        <dependency>
79            <groupId>org.reactivestreams</groupId>
80            <artifactId>reactive-streams-tck</artifactId>
81            <scope>test</scope>
82        </dependency>
83        <dependency>
84            <groupId>nl.jqno.equalsverifier</groupId>
85            <artifactId>equalsverifier</artifactId>
86            <scope>test</scope>
87        </dependency>
88        <dependency>
89            <groupId>net.bytebuddy</groupId>
90            <artifactId>byte-buddy</artifactId>
91            <scope>test</scope>
92        </dependency>
93    </dependencies>
94
95    <build>
96        <plugins>
97            <plugin>
98                <groupId>org.apache.maven.plugins</groupId>
99                <artifactId>maven-jar-plugin</artifactId>
100                <configuration>
101                    <archive>
102                        <manifestEntries>
103                            <Automatic-Module-Name>software.amazon.awssdk.http</Automatic-Module-Name>
104                        </manifestEntries>
105                    </archive>
106                </configuration>
107            </plugin>
108        </plugins>
109    </build>
110
111</project>
112