xref: /aosp_15_r20/external/aws-sdk-java-v2/release-scripts/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
22*8a52c783SCole Faust    <parent>
23*8a52c783SCole Faust        <groupId>software.amazon.awssdk</groupId>
24*8a52c783SCole Faust        <artifactId>aws-sdk-java-pom</artifactId>
25*8a52c783SCole Faust        <version>2.24.3</version>
26*8a52c783SCole Faust        <relativePath>../pom.xml</relativePath>
27*8a52c783SCole Faust    </parent>
28*8a52c783SCole Faust    <artifactId>release-scripts</artifactId>
29*8a52c783SCole Faust
30*8a52c783SCole Faust    <name>AWS Java SDK :: New Service Maven Plugin</name>
31*8a52c783SCole Faust    <description>This plugin can add new services to the SDK.</description>
32*8a52c783SCole Faust
33*8a52c783SCole Faust    <properties>
34*8a52c783SCole Faust        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35*8a52c783SCole Faust        <jre.version>1.8</jre.version>
36*8a52c783SCole Faust    </properties>
37*8a52c783SCole Faust
38*8a52c783SCole Faust    <dependencyManagement>
39*8a52c783SCole Faust        <dependencies>
40*8a52c783SCole Faust            <dependency>
41*8a52c783SCole Faust                <groupId>software.amazon.awssdk</groupId>
42*8a52c783SCole Faust                <artifactId>bom-internal</artifactId>
43*8a52c783SCole Faust                <version>${project.version}</version>
44*8a52c783SCole Faust                <type>pom</type>
45*8a52c783SCole Faust                <scope>import</scope>
46*8a52c783SCole Faust            </dependency>
47*8a52c783SCole Faust        </dependencies>
48*8a52c783SCole Faust    </dependencyManagement>
49*8a52c783SCole Faust
50*8a52c783SCole Faust    <dependencies>
51*8a52c783SCole Faust        <dependency>
52*8a52c783SCole Faust            <groupId>software.amazon.awssdk</groupId>
53*8a52c783SCole Faust            <artifactId>utils</artifactId>
54*8a52c783SCole Faust            <version>${awsjavasdk.version}</version>
55*8a52c783SCole Faust        </dependency>
56*8a52c783SCole Faust        <dependency>
57*8a52c783SCole Faust            <groupId>org.apache.commons</groupId>
58*8a52c783SCole Faust            <artifactId>commons-lang3</artifactId>
59*8a52c783SCole Faust            <scope>compile</scope>
60*8a52c783SCole Faust        </dependency>
61*8a52c783SCole Faust        <dependency>
62*8a52c783SCole Faust            <groupId>commons-io</groupId>
63*8a52c783SCole Faust            <artifactId>commons-io</artifactId>
64*8a52c783SCole Faust            <scope>compile</scope>
65*8a52c783SCole Faust        </dependency>
66*8a52c783SCole Faust        <dependency>
67*8a52c783SCole Faust            <groupId>commons-cli</groupId>
68*8a52c783SCole Faust            <artifactId>commons-cli</artifactId>
69*8a52c783SCole Faust            <scope>compile</scope>
70*8a52c783SCole Faust        </dependency>
71*8a52c783SCole Faust        <dependency>
72*8a52c783SCole Faust            <groupId>org.apache.logging.log4j</groupId>
73*8a52c783SCole Faust            <artifactId>log4j-api</artifactId>
74*8a52c783SCole Faust            <scope>runtime</scope>
75*8a52c783SCole Faust        </dependency>
76*8a52c783SCole Faust        <dependency>
77*8a52c783SCole Faust            <groupId>org.apache.logging.log4j</groupId>
78*8a52c783SCole Faust            <artifactId>log4j-core</artifactId>
79*8a52c783SCole Faust            <scope>runtime</scope>
80*8a52c783SCole Faust        </dependency>
81*8a52c783SCole Faust        <dependency>
82*8a52c783SCole Faust            <groupId>org.apache.logging.log4j</groupId>
83*8a52c783SCole Faust            <artifactId>log4j-slf4j-impl</artifactId>
84*8a52c783SCole Faust            <scope>runtime</scope>
85*8a52c783SCole Faust        </dependency>
86*8a52c783SCole Faust    </dependencies>
87*8a52c783SCole Faust</project>
88