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 </parent> 25 <modelVersion>4.0.0</modelVersion> 26 27 <artifactId>utils</artifactId> 28 29 <name>AWS Java SDK :: Utilities</name> 30 31 <dependencyManagement> 32 <dependencies> 33 <dependency> 34 <groupId>software.amazon.awssdk</groupId> 35 <artifactId>bom-internal</artifactId> 36 <version>${project.version}</version> 37 <type>pom</type> 38 <scope>import</scope> 39 </dependency> 40 </dependencies> 41 </dependencyManagement> 42 43 <dependencies> 44 <dependency> 45 <groupId>org.reactivestreams</groupId> 46 <artifactId>reactive-streams</artifactId> 47 </dependency> 48 <dependency> 49 <groupId>software.amazon.awssdk</groupId> 50 <artifactId>annotations</artifactId> 51 <version>${awsjavasdk.version}</version> 52 </dependency> 53 <dependency> 54 <groupId>org.slf4j</groupId> 55 <artifactId>slf4j-api</artifactId> 56 </dependency> 57 <dependency> 58 <groupId>org.junit.jupiter</groupId> 59 <artifactId>junit-jupiter</artifactId> 60 <scope>test</scope> 61 </dependency> 62 <dependency> 63 <groupId>org.junit.vintage</groupId> 64 <artifactId>junit-vintage-engine</artifactId> 65 <scope>test</scope> 66 </dependency> 67 <dependency> 68 <groupId>org.hamcrest</groupId> 69 <artifactId>hamcrest-all</artifactId> 70 <scope>test</scope> 71 </dependency> 72 <dependency> 73 <groupId>org.hamcrest</groupId> 74 <artifactId>hamcrest-core</artifactId> 75 <scope>test</scope> 76 </dependency> 77 <dependency> 78 <groupId>org.mockito</groupId> 79 <artifactId>mockito-core</artifactId> 80 <scope>test</scope> 81 </dependency> 82 <dependency> 83 <groupId>org.mockito</groupId> 84 <artifactId>mockito-junit-jupiter</artifactId> 85 <scope>test</scope> 86 </dependency> 87 <dependency> 88 <groupId>org.assertj</groupId> 89 <artifactId>assertj-core</artifactId> 90 <scope>test</scope> 91 </dependency> 92 <dependency> 93 <groupId>commons-io</groupId> 94 <artifactId>commons-io</artifactId> 95 <scope>test</scope> 96 </dependency> 97 <dependency> 98 <groupId>org.reactivestreams</groupId> 99 <artifactId>reactive-streams-tck</artifactId> 100 <scope>test</scope> 101 </dependency> 102 <dependency> 103 <groupId>org.apache.logging.log4j</groupId> 104 <artifactId>log4j-api</artifactId> 105 <scope>test</scope> 106 </dependency> 107 <dependency> 108 <groupId>org.apache.logging.log4j</groupId> 109 <artifactId>log4j-core</artifactId> 110 <scope>test</scope> 111 </dependency> 112 <dependency> 113 <groupId>org.apache.logging.log4j</groupId> 114 <artifactId>log4j-slf4j-impl</artifactId> 115 <scope>test</scope> 116 </dependency> 117 <dependency> 118 <groupId>org.slf4j</groupId> 119 <artifactId>jcl-over-slf4j</artifactId> 120 <scope>test</scope> 121 <version>${slf4j.version}</version> 122 </dependency> 123 </dependencies> 124 125 <build> 126 <plugins> 127 <plugin> 128 <groupId>org.apache.maven.plugins</groupId> 129 <artifactId>maven-jar-plugin</artifactId> 130 <configuration> 131 <archive> 132 <manifestEntries> 133 <Automatic-Module-Name>software.amazon.awssdk.utils</Automatic-Module-Name> 134 </manifestEntries> 135 </archive> 136 </configuration> 137 </plugin> 138 </plugins> 139 </build> 140 141</project> 142