1<?xml version="1.0" encoding="UTF-8" standalone="no"?> 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 18 <modelVersion>4.0.0</modelVersion> 19 <parent> 20 <groupId>software.amazon.awssdk</groupId> 21 <artifactId>aws-sdk-java-pom</artifactId> 22 <version>2.24.3</version> 23 </parent> 24 <artifactId>services-custom</artifactId> 25 <name>AWS Java SDK :: Custom Services</name> 26 <packaging>pom</packaging> 27 <description>The AWS Java SDK custom services</description> 28 <url>https://aws.amazon.com/sdkforjava</url> 29 30 <modules> 31 <module>dynamodb-enhanced</module> 32 <module>s3-transfer-manager</module> 33 <module>iam-policy-builder</module> 34 </modules> 35 36 <dependencyManagement> 37 <dependencies> 38 <dependency> 39 <groupId>software.amazon.awssdk</groupId> 40 <artifactId>bom-internal</artifactId> 41 <version>${awsjavasdk.version}</version> 42 <type>pom</type> 43 <scope>import</scope> 44 </dependency> 45 </dependencies> 46 </dependencyManagement> 47 48 <dependencies> 49 <dependency> 50 <groupId>org.apache.logging.log4j</groupId> 51 <artifactId>log4j-api</artifactId> 52 <scope>test</scope> 53 </dependency> 54 <dependency> 55 <groupId>org.apache.logging.log4j</groupId> 56 <artifactId>log4j-core</artifactId> 57 <scope>test</scope> 58 </dependency> 59 <dependency> 60 <groupId>org.apache.logging.log4j</groupId> 61 <artifactId>log4j-slf4j-impl</artifactId> 62 <scope>test</scope> 63 </dependency> 64 <dependency> 65 <groupId>org.slf4j</groupId> 66 <artifactId>jcl-over-slf4j</artifactId> 67 <scope>test</scope> 68 <version>${slf4j.version}</version> 69 </dependency> 70 </dependencies> 71</project> 72