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