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