xref: /aosp_15_r20/external/aws-sdk-java-v2/services/acm/pom.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
1*8a52c783SCole Faust<?xml version="1.0"?>
2*8a52c783SCole Faust<!--
3*8a52c783SCole Faust  ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4*8a52c783SCole Faust  ~
5*8a52c783SCole Faust  ~ Licensed under the Apache License, Version 2.0 (the "License").
6*8a52c783SCole Faust  ~ You may not use this file except in compliance with the License.
7*8a52c783SCole Faust  ~ A copy of the License is located at
8*8a52c783SCole Faust  ~
9*8a52c783SCole Faust  ~  http://aws.amazon.com/apache2.0
10*8a52c783SCole Faust  ~
11*8a52c783SCole Faust  ~ or in the "license" file accompanying this file. This file is distributed
12*8a52c783SCole Faust  ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13*8a52c783SCole Faust  ~ express or implied. See the License for the specific language governing
14*8a52c783SCole Faust  ~ permissions and limitations under the License.
15*8a52c783SCole Faust  -->
16*8a52c783SCole Faust
17*8a52c783SCole Faust<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
18*8a52c783SCole Faust         xmlns="http://maven.apache.org/POM/4.0.0"
19*8a52c783SCole Faust         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
20*8a52c783SCole Faust    <modelVersion>4.0.0</modelVersion>
21*8a52c783SCole Faust    <parent>
22*8a52c783SCole Faust        <groupId>software.amazon.awssdk</groupId>
23*8a52c783SCole Faust        <artifactId>services</artifactId>
24*8a52c783SCole Faust        <version>2.24.3</version>
25*8a52c783SCole Faust    </parent>
26*8a52c783SCole Faust    <artifactId>acm</artifactId>
27*8a52c783SCole Faust    <name>AWS Java SDK :: Services :: AWS Certificate Manager</name>
28*8a52c783SCole Faust    <description>The AWS Java SDK for AWS Certificate Manager module holds the client classes that are used for
29*8a52c783SCole Faust        communicating with AWS Certificate Manager service.
30*8a52c783SCole Faust    </description>
31*8a52c783SCole Faust    <url>https://aws.amazon.com/sdkforjava</url>
32*8a52c783SCole Faust    <build>
33*8a52c783SCole Faust        <plugins>
34*8a52c783SCole Faust            <plugin>
35*8a52c783SCole Faust                <groupId>org.apache.maven.plugins</groupId>
36*8a52c783SCole Faust                <artifactId>maven-jar-plugin</artifactId>
37*8a52c783SCole Faust                <configuration>
38*8a52c783SCole Faust                    <archive>
39*8a52c783SCole Faust                        <manifestEntries>
40*8a52c783SCole Faust                            <Automatic-Module-Name>software.amazon.awssdk.services.acm</Automatic-Module-Name>
41*8a52c783SCole Faust                        </manifestEntries>
42*8a52c783SCole Faust                    </archive>
43*8a52c783SCole Faust                </configuration>
44*8a52c783SCole Faust            </plugin>
45*8a52c783SCole Faust        </plugins>
46*8a52c783SCole Faust    </build>
47*8a52c783SCole Faust
48*8a52c783SCole Faust    <dependencies>
49*8a52c783SCole Faust        <dependency>
50*8a52c783SCole Faust            <groupId>software.amazon.awssdk</groupId>
51*8a52c783SCole Faust            <artifactId>aws-json-protocol</artifactId>
52*8a52c783SCole Faust            <version>${awsjavasdk.version}</version>
53*8a52c783SCole Faust        </dependency>
54*8a52c783SCole Faust        <dependency>
55*8a52c783SCole Faust            <groupId>software.amazon.awssdk</groupId>
56*8a52c783SCole Faust            <artifactId>protocol-core</artifactId>
57*8a52c783SCole Faust            <version>${awsjavasdk.version}</version>
58*8a52c783SCole Faust        </dependency>
59*8a52c783SCole Faust        <dependency>
60*8a52c783SCole Faust            <groupId>software.amazon.awssdk</groupId>
61*8a52c783SCole Faust            <artifactId>http-auth-aws</artifactId>
62*8a52c783SCole Faust            <version>${awsjavasdk.version}</version>
63*8a52c783SCole Faust        </dependency>
64*8a52c783SCole Faust        <dependency>
65*8a52c783SCole Faust            <groupId>software.amazon.awssdk</groupId>
66*8a52c783SCole Faust            <artifactId>auth-crt</artifactId>
67*8a52c783SCole Faust            <version>${awsjavasdk.version}</version>
68*8a52c783SCole Faust            <scope>test</scope>
69*8a52c783SCole Faust        </dependency>
70*8a52c783SCole Faust    </dependencies>
71*8a52c783SCole Faust</project>
72