xref: /aosp_15_r20/external/aws-sdk-java-v2/core/imds/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    <parent>
21        <artifactId>core</artifactId>
22        <groupId>software.amazon.awssdk</groupId>
23        <version>2.24.3</version>
24    </parent>
25    <modelVersion>4.0.0</modelVersion>
26    <artifactId>imds</artifactId>
27    <name>AWS Java SDK :: Core :: Imds</name>
28    <url>https://aws.amazon.com/sdkforjava</url>
29
30    <dependencies>
31        <dependency>
32            <groupId>software.amazon.awssdk</groupId>
33            <artifactId>annotations</artifactId>
34            <version>${awsjavasdk.version}</version>
35        </dependency>
36        <dependency>
37            <groupId>software.amazon.awssdk</groupId>
38            <artifactId>http-client-spi</artifactId>
39            <version>${awsjavasdk.version}</version>
40            <scope>compile</scope>
41        </dependency>
42        <dependency>
43            <groupId>software.amazon.awssdk</groupId>
44            <artifactId>utils</artifactId>
45            <version>${awsjavasdk.version}</version>
46            <scope>compile</scope>
47        </dependency>
48        <dependency>
49            <groupId>software.amazon.awssdk</groupId>
50            <artifactId>json-utils</artifactId>
51            <version>${awsjavasdk.version}</version>
52            <scope>compile</scope>
53        </dependency>
54        <dependency>
55            <groupId>software.amazon.awssdk</groupId>
56            <artifactId>third-party-jackson-core</artifactId>
57            <version>${awsjavasdk.version}</version>
58            <scope>compile</scope>
59        </dependency>
60        <dependency>
61            <groupId>software.amazon.awssdk</groupId>
62            <artifactId>profiles</artifactId>
63            <version>${awsjavasdk.version}</version>
64            <scope>compile</scope>
65        </dependency>
66        <dependency>
67            <groupId>org.assertj</groupId>
68            <artifactId>assertj-core</artifactId>
69            <scope>test</scope>
70        </dependency>
71        <dependency>
72            <groupId>org.mockito</groupId>
73            <artifactId>mockito-core</artifactId>
74            <scope>test</scope>
75        </dependency>
76        <dependency>
77            <groupId>software.amazon.awssdk</groupId>
78            <artifactId>url-connection-client</artifactId>
79            <version>${awsjavasdk.version}</version>
80            <scope>test</scope>
81        </dependency>
82        <dependency>
83            <groupId>nl.jqno.equalsverifier</groupId>
84            <artifactId>equalsverifier</artifactId>
85            <scope>test</scope>
86        </dependency>
87        <dependency>
88            <groupId>net.bytebuddy</groupId>
89            <artifactId>byte-buddy</artifactId>
90            <scope>test</scope>
91        </dependency>
92        <dependency>
93            <groupId>software.amazon.awssdk</groupId>
94            <artifactId>sdk-core</artifactId>
95            <version>${awsjavasdk.version}</version>
96            <scope>compile</scope>
97        </dependency>
98        <dependency>
99            <groupId>com.github.tomakehurst</groupId>
100            <artifactId>wiremock-jre8</artifactId>
101            <scope>test</scope>
102        </dependency>
103        <dependency>
104            <groupId>software.amazon.awssdk</groupId>
105            <artifactId>test-utils</artifactId>
106            <version>${awsjavasdk.version}</version>
107            <scope>test</scope>
108            <exclusions>
109                <exclusion>
110                    <groupId>junit</groupId>
111                    <artifactId>junit</artifactId>
112                </exclusion>
113                <exclusion>
114                    <groupId>org.junit.vintage</groupId>
115                    <artifactId>junit-vintage-engine</artifactId>
116                </exclusion>
117            </exclusions>
118        </dependency>
119        <dependency>
120            <groupId>software.amazon.awssdk</groupId>
121            <artifactId>netty-nio-client</artifactId>
122            <version>${awsjavasdk.version}</version>
123            <scope>test</scope>
124        </dependency>
125    </dependencies>
126
127    <build>
128        <plugins>
129            <plugin>
130                <groupId>org.apache.maven.plugins</groupId>
131                <artifactId>maven-jar-plugin</artifactId>
132                <configuration>
133                    <archive>
134                        <manifestEntries>
135                            <Automatic-Module-Name>software.amazon.awssdk.imds</Automatic-Module-Name>
136                        </manifestEntries>
137                    </archive>
138                </configuration>
139            </plugin>
140        </plugins>
141    </build>
142</project>