1<?xml version="1.0" encoding="UTF-8"?> 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" 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 20 <parent> 21 <artifactId>aws-sdk-java-pom</artifactId> 22 <groupId>software.amazon.awssdk</groupId> 23 <version>2.24.3</version> 24 <relativePath>../../pom.xml</relativePath> 25 </parent> 26 <modelVersion>4.0.0</modelVersion> 27 28 <artifactId>bundle-logging-bridge-binding-test</artifactId> 29 30 <name>AWS Java SDK :: Test :: Bundle Logging Bridge Binding Tests</name> 31 <description>Tests to ensure bundle-logging-bridge can correctly bind to SLF4J implementations.</description> 32 <url>https://aws.amazon.com/sdkforjava</url> 33 34 <dependencyManagement> 35 <dependencies> 36 <dependency> 37 <groupId>software.amazon.awssdk</groupId> 38 <artifactId>bom-internal</artifactId> 39 <version>${project.version}</version> 40 <type>pom</type> 41 <scope>import</scope> 42 </dependency> 43 <dependency> 44 <groupId>org.apache.logging.log4j</groupId> 45 <artifactId>log4j-bom</artifactId> 46 <version>${log4j.version}</version> 47 <scope>import</scope> 48 <type>pom</type> 49 </dependency> 50 </dependencies> 51 </dependencyManagement> 52 53 <dependencies> 54 <dependency> 55 <groupId>software.amazon.awssdk</groupId> 56 <artifactId>third-party-slf4j-api</artifactId> 57 <version>${project.version}</version> 58 <scope>test</scope> 59 </dependency> 60 <dependency> 61 <groupId>software.amazon.awssdk</groupId> 62 <artifactId>bundle-logging-bridge</artifactId> 63 <version>${project.version}</version> 64 <scope>test</scope> 65 </dependency> 66 <dependency> 67 <groupId>software.amazon.awssdk</groupId> 68 <artifactId>test-utils</artifactId> 69 <version>${project.version}</version> 70 <scope>test</scope> 71 </dependency> 72 <dependency> 73 <groupId>org.apache.logging.log4j</groupId> 74 <artifactId>log4j-core</artifactId> 75 <scope>test</scope> 76 </dependency> 77 <dependency> 78 <groupId>org.apache.logging.log4j</groupId> 79 <artifactId>log4j-api</artifactId> 80 <scope>test</scope> 81 </dependency> 82 <dependency> 83 <groupId>org.apache.logging.log4j</groupId> 84 <artifactId>log4j-slf4j-impl</artifactId> 85 <scope>test</scope> 86 </dependency> 87 <dependency> 88 <groupId>org.junit.jupiter</groupId> 89 <artifactId>junit-jupiter</artifactId> 90 <scope>test</scope> 91 </dependency> 92 <dependency> 93 <groupId>org.junit.jupiter</groupId> 94 <artifactId>junit-jupiter-engine</artifactId> 95 <scope>test</scope> 96 </dependency> 97 <dependency> 98 <groupId>org.assertj</groupId> 99 <artifactId>assertj-core</artifactId> 100 <scope>test</scope> 101 </dependency> 102 </dependencies> 103</project> 104