xref: /aosp_15_r20/external/aws-sdk-java-v2/bundle-logging-bridge/pom.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
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    <modelVersion>4.0.0</modelVersion>
21    <parent>
22        <groupId>software.amazon.awssdk</groupId>
23        <artifactId>aws-sdk-java-pom</artifactId>
24        <version>2.24.3</version>
25    </parent>
26    <artifactId>bundle-logging-bridge</artifactId>
27    <packaging>jar</packaging>
28
29    <name>AWS Java SDK :: Bundle Logging Bridge</name>
30    <url>https://aws.amazon.com/sdkforjava</url>
31
32    <properties>
33        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34        <sonar.skip>true</sonar.skip>
35    </properties>
36
37    <dependencyManagement>
38        <dependencies>
39            <dependency>
40                <groupId>software.amazon.awssdk</groupId>
41                <artifactId>bom-internal</artifactId>
42                <version>${project.version}</version>
43                <type>pom</type>
44                <scope>import</scope>
45            </dependency>
46        </dependencies>
47    </dependencyManagement>
48
49    <dependencies>
50        <dependency>
51            <groupId>software.amazon.awssdk</groupId>
52            <artifactId>annotations</artifactId>
53            <version>${awsjavasdk.version}</version>
54            <scope>provided</scope>
55        </dependency>
56        <dependency>
57            <!-- Provided scope as the 'thirdparty.org.slf4j' package will be in the shaded bundle -->
58            <groupId>software.amazon.awssdk</groupId>
59            <artifactId>third-party-slf4j-api</artifactId>
60            <version>${awsjavasdk.version}</version>
61           <scope>provided</scope>
62        </dependency>
63        <dependency>
64            <!-- Brought in by bundle user SLF4J impl -->
65            <groupId>org.slf4j</groupId>
66            <artifactId>slf4j-api</artifactId>
67            <version>${slf4j.version}</version>
68           <scope>provided</scope>
69        </dependency>
70
71        <dependency>
72            <groupId>org.mockito</groupId>
73            <artifactId>mockito-junit-jupiter</artifactId>
74            <scope>test</scope>
75        </dependency>
76        <dependency>
77            <groupId>org.junit.jupiter</groupId>
78            <artifactId>junit-jupiter</artifactId>
79            <scope>test</scope>
80        </dependency>
81        <dependency>
82            <groupId>org.junit.jupiter</groupId>
83            <artifactId>junit-jupiter-engine</artifactId>
84            <scope>test</scope>
85        </dependency>
86        <dependency>
87            <groupId>org.assertj</groupId>
88            <artifactId>assertj-core</artifactId>
89            <scope>test</scope>
90        </dependency>
91    </dependencies>
92
93</project>
94