xref: /aosp_15_r20/external/aws-sdk-java-v2/test/http-client-tests/pom.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
1<?xml version="1.0"?>
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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
18         xmlns="http://maven.apache.org/POM/4.0.0"
19         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
20    <modelVersion>4.0.0</modelVersion>
21    <parent>
22        <artifactId>aws-sdk-java-pom</artifactId>
23        <groupId>software.amazon.awssdk</groupId>
24        <version>2.24.3</version>
25        <relativePath>../../pom.xml</relativePath>
26    </parent>
27    <artifactId>http-client-tests</artifactId>
28    <name>AWS Java SDK :: Test :: HTTP Client Tests</name>
29    <description>A set of acceptance tests that can be extended by an SDK HTTP plugin implementation to help ensure it behaves in
30        manner consistent with what is expected by the SDK.</description>
31    <url>https://aws.amazon.com/sdkforjava</url>
32
33    <dependencyManagement>
34        <dependencies>
35            <dependency>
36                <groupId>software.amazon.awssdk</groupId>
37                <artifactId>bom-internal</artifactId>
38                <version>${project.version}</version>
39                <type>pom</type>
40                <scope>import</scope>
41            </dependency>
42        </dependencies>
43    </dependencyManagement>
44
45    <dependencies>
46        <dependency>
47            <groupId>software.amazon.awssdk</groupId>
48            <artifactId>http-client-spi</artifactId>
49            <version>${awsjavasdk.version}</version>
50        </dependency>
51        <dependency>
52            <groupId>software.amazon.awssdk</groupId>
53            <artifactId>metrics-spi</artifactId>
54            <version>${awsjavasdk.version}</version>
55        </dependency>
56        <dependency>
57            <groupId>software.amazon.awssdk</groupId>
58            <artifactId>utils</artifactId>
59            <version>${awsjavasdk.version}</version>
60        </dependency>
61        <dependency>
62            <groupId>org.junit.jupiter</groupId>
63            <artifactId>junit-jupiter</artifactId>
64            <scope>compile</scope>
65        </dependency>
66        <dependency>
67            <groupId>org.junit.vintage</groupId>
68            <artifactId>junit-vintage-engine</artifactId>
69            <scope>compile</scope>
70        </dependency>
71        <dependency>
72            <groupId>junit</groupId>
73            <artifactId>junit</artifactId>
74            <scope>compile</scope>
75        </dependency>
76        <dependency>
77            <groupId>org.assertj</groupId>
78            <artifactId>assertj-core</artifactId>
79            <scope>compile</scope>
80        </dependency>
81        <dependency>
82            <groupId>org.mockito</groupId>
83            <artifactId>mockito-core</artifactId>
84            <scope>compile</scope>
85        </dependency>
86        <dependency>
87            <groupId>com.github.tomakehurst</groupId>
88            <artifactId>wiremock-jre8</artifactId>
89            <scope>compile</scope>
90        </dependency>
91        <dependency>
92            <groupId>io.reactivex.rxjava2</groupId>
93            <artifactId>rxjava</artifactId>
94            <scope>compile</scope>
95        </dependency>
96        <dependency>
97            <groupId>io.netty</groupId>
98            <artifactId>netty-codec-http</artifactId>
99        </dependency>
100        <dependency>
101            <groupId>io.netty</groupId>
102            <artifactId>netty-transport</artifactId>
103        </dependency>
104        <dependency>
105            <groupId>io.netty</groupId>
106            <artifactId>netty-common</artifactId>
107        </dependency>
108        <dependency>
109            <groupId>io.netty</groupId>
110            <artifactId>netty-buffer</artifactId>
111        </dependency>
112        <dependency>
113            <groupId>io.netty</groupId>
114            <artifactId>netty-handler</artifactId>
115        </dependency>
116        <dependency>
117            <groupId>io.netty</groupId>
118            <artifactId>netty-tcnative-boringssl-static</artifactId>
119            <scope>compile</scope>
120        </dependency>
121        <dependency>
122            <groupId>org.bouncycastle</groupId>
123            <artifactId>bcpkix-jdk15on</artifactId>
124            <version>1.70</version>
125            <scope>compile</scope>
126        </dependency>
127        <dependency>
128            <groupId>software.amazon.awssdk</groupId>
129            <artifactId>test-utils</artifactId>
130            <scope>compile</scope>
131        </dependency>
132    </dependencies>
133
134    <!-- Disable spotbugs for this test module to speed up the build. -->
135    <build>
136        <plugins>
137            <plugin>
138                <groupId>com.github.spotbugs</groupId>
139                <artifactId>spotbugs-maven-plugin</artifactId>
140                <configuration>
141                    <skip>true</skip>
142                </configuration>
143            </plugin>
144            <plugin>
145                <groupId>org.apache.maven.plugins</groupId>
146                <artifactId>maven-dependency-plugin</artifactId>
147                <configuration>
148                    <skip>true</skip>
149                </configuration>
150            </plugin>
151        </plugins>
152    </build>
153</project>
154