xref: /aosp_15_r20/external/aws-sdk-java-v2/test/test-utils/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        <groupId>software.amazon.awssdk</groupId>
23        <artifactId>aws-sdk-java-pom</artifactId>
24        <version>2.24.3</version>
25        <relativePath>../../pom.xml</relativePath>
26    </parent>
27    <artifactId>test-utils</artifactId>
28    <name>AWS Java SDK :: Test :: Test Utils</name>
29    <description>The AWS SDK for Java - Test Utils module holds the all the utilities that are used by the tests.
30    </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>utils</artifactId>
49            <version>${awsjavasdk.version}</version>
50        </dependency>
51        <dependency>
52            <groupId>org.hamcrest</groupId>
53            <artifactId>hamcrest-core</artifactId>
54            <scope>compile</scope>
55        </dependency>
56        <dependency>
57            <groupId>com.fasterxml.jackson.core</groupId>
58            <artifactId>jackson-core</artifactId>
59        </dependency>
60        <dependency>
61            <groupId>org.slf4j</groupId>
62            <artifactId>slf4j-api</artifactId>
63        </dependency>
64
65        <dependency>
66            <groupId>org.junit.jupiter</groupId>
67            <artifactId>junit-jupiter</artifactId>
68            <scope>compile</scope>
69        </dependency>
70        <dependency>
71            <groupId>org.junit.vintage</groupId>
72            <artifactId>junit-vintage-engine</artifactId>
73            <scope>compile</scope>
74        </dependency>
75        <dependency>
76            <groupId>junit</groupId>
77            <artifactId>junit</artifactId>
78            <scope>compile</scope>
79        </dependency>
80        <dependency>
81            <groupId>com.fasterxml.jackson.core</groupId>
82            <artifactId>jackson-databind</artifactId>
83        </dependency>
84        <dependency>
85            <groupId>org.apache.logging.log4j</groupId>
86            <artifactId>log4j-api</artifactId>
87            <scope>compile</scope>
88        </dependency>
89        <dependency>
90            <groupId>org.apache.logging.log4j</groupId>
91            <artifactId>log4j-core</artifactId>
92            <scope>compile</scope>
93        </dependency>
94        <dependency>
95            <groupId>org.apache.logging.log4j</groupId>
96            <artifactId>log4j-slf4j-impl</artifactId>
97            <scope>test</scope>
98        </dependency>
99        <dependency>
100            <groupId>org.mockito</groupId>
101            <artifactId>mockito-core</artifactId>
102            <scope>test</scope>
103        </dependency>
104        <dependency>
105            <groupId>org.assertj</groupId>
106            <artifactId>assertj-core</artifactId>
107            <scope>test</scope>
108        </dependency>
109        <dependency>
110            <groupId>org.hamcrest</groupId>
111            <artifactId>hamcrest-all</artifactId>
112            <scope>test</scope>
113        </dependency>
114    </dependencies>
115
116    <build>
117        <plugins>
118            <plugin>
119                <groupId>com.github.spotbugs</groupId>
120                <artifactId>spotbugs-maven-plugin</artifactId>
121                <configuration>
122                    <skip>true</skip>
123                </configuration>
124            </plugin>
125        </plugins>
126    </build>
127</project>
128