1<?xml version="1.0"?> 2<!-- 3 ~ Copyright 2010-2019 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 18 xmlns="http://maven.apache.org/POM/4.0.0" 19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 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 <relativePath>../../pom.xml</relativePath> 26 </parent> 27 <artifactId>s3-transfer-manager</artifactId> 28 <name>AWS Java SDK :: S3 :: Transfer Manager</name> 29 <description> 30 The S3 Transfer Manager allows customers to easily and optimally 31 transfer objects and directories to and from S3. 32 </description> 33 <url>https://aws.amazon.com/sdkforjava</url> 34 35 <properties> 36 <jre.version>1.8</jre.version> 37 <awsjavasdk.version>${project.parent.version}</awsjavasdk.version> 38 </properties> 39 40 <dependencyManagement> 41 <dependencies> 42 <dependency> 43 <groupId>software.amazon.awssdk</groupId> 44 <artifactId>bom-internal</artifactId> 45 <version>${awsjavasdk.version}</version> 46 <type>pom</type> 47 <scope>import</scope> 48 </dependency> 49 </dependencies> 50 </dependencyManagement> 51 52 <dependencies> 53 <dependency> 54 <groupId>software.amazon.awssdk</groupId> 55 <artifactId>s3</artifactId> 56 <version>${awsjavasdk.version}</version> 57 </dependency> 58 <dependency> 59 <groupId>software.amazon.awssdk</groupId> 60 <artifactId>sdk-core</artifactId> 61 <version>${awsjavasdk.version}</version> 62 </dependency> 63 <dependency> 64 <groupId>software.amazon.awssdk</groupId> 65 <artifactId>utils</artifactId> 66 <version>${awsjavasdk.version}</version> 67 </dependency> 68 <dependency> 69 <groupId>software.amazon.awssdk</groupId> 70 <artifactId>annotations</artifactId> 71 <version>${awsjavasdk.version}</version> 72 </dependency> 73 <dependency> 74 <groupId>software.amazon.awssdk</groupId> 75 <artifactId>regions</artifactId> 76 <version>${awsjavasdk.version}</version> 77 </dependency> 78 <dependency> 79 <groupId>software.amazon.awssdk.crt</groupId> 80 <artifactId>aws-crt</artifactId> 81 <version>${awscrt.version}</version> 82 <!-- Only required for CRT-based TM --> 83 <optional>true</optional> 84 </dependency> 85 <dependency> 86 <groupId>software.amazon.awssdk</groupId> 87 <artifactId>arns</artifactId> 88 <version>${awsjavasdk.version}</version> 89 </dependency> 90 <dependency> 91 <groupId>software.amazon.awssdk</groupId> 92 <artifactId>aws-core</artifactId> 93 <version>${awsjavasdk.version}</version> 94 </dependency> 95 <dependency> 96 <groupId>software.amazon.awssdk</groupId> 97 <artifactId>json-utils</artifactId> 98 <version>${awsjavasdk.version}</version> 99 </dependency> 100 <dependency> 101 <groupId>software.amazon.awssdk</groupId> 102 <artifactId>protocol-core</artifactId> 103 <version>${awsjavasdk.version}</version> 104 </dependency> 105 <dependency> 106 <groupId>software.amazon.awssdk</groupId> 107 <artifactId>auth</artifactId> 108 <version>${awsjavasdk.version}</version> 109 </dependency> 110 <dependency> 111 <groupId>software.amazon.awssdk</groupId> 112 <artifactId>http-client-spi</artifactId> 113 <version>${awsjavasdk.version}</version> 114 </dependency> 115 <dependency> 116 <groupId>software.amazon.awssdk</groupId> 117 <artifactId>service-test-utils</artifactId> 118 <version>${awsjavasdk.version}</version> 119 <scope>test</scope> 120 <exclusions> 121 <exclusion> 122 <groupId>junit</groupId> 123 <artifactId>junit</artifactId> 124 </exclusion> 125 <exclusion> 126 <groupId>org.junit.vintage</groupId> 127 <artifactId>junit-vintage-engine</artifactId> 128 </exclusion> 129 </exclusions> 130 </dependency> 131 <dependency> 132 <groupId>software.amazon.awssdk</groupId> 133 <artifactId>test-utils</artifactId> 134 <version>${awsjavasdk.version}</version> 135 <scope>test</scope> 136 <exclusions> 137 <exclusion> 138 <groupId>junit</groupId> 139 <artifactId>junit</artifactId> 140 </exclusion> 141 <exclusion> 142 <groupId>org.junit.vintage</groupId> 143 <artifactId>junit-vintage-engine</artifactId> 144 </exclusion> 145 </exclusions> 146 </dependency> 147 <dependency> 148 <groupId>org.junit.jupiter</groupId> 149 <artifactId>junit-jupiter</artifactId> 150 <scope>test</scope> 151 </dependency> 152 <dependency> 153 <groupId>org.junit.jupiter</groupId> 154 <artifactId>junit-jupiter-engine</artifactId> 155 <version>${junit5.version}</version> 156 <scope>test</scope> 157 </dependency> 158 <dependency> 159 <groupId>org.assertj</groupId> 160 <artifactId>assertj-core</artifactId> 161 <scope>test</scope> 162 </dependency> 163 <dependency> 164 <groupId>org.mockito</groupId> 165 <artifactId>mockito-core</artifactId> 166 <scope>test</scope> 167 </dependency> 168 <dependency> 169 <groupId>org.apache.logging.log4j</groupId> 170 <artifactId>log4j-api</artifactId> 171 <scope>test</scope> 172 </dependency> 173 <dependency> 174 <groupId>org.apache.logging.log4j</groupId> 175 <artifactId>log4j-core</artifactId> 176 <scope>test</scope> 177 </dependency> 178 <dependency> 179 <groupId>org.apache.logging.log4j</groupId> 180 <artifactId>log4j-slf4j-impl</artifactId> 181 <scope>test</scope> 182 </dependency> 183 <dependency> 184 <groupId>io.reactivex.rxjava2</groupId> 185 <artifactId>rxjava</artifactId> 186 <scope>test</scope> 187 </dependency> 188 <dependency> 189 <groupId>org.apache.commons</groupId> 190 <artifactId>commons-lang3</artifactId> 191 <scope>test</scope> 192 </dependency> 193 <dependency> 194 <groupId>org.reactivestreams</groupId> 195 <artifactId>reactive-streams-tck</artifactId> 196 <scope>test</scope> 197 </dependency> 198 <dependency> 199 <groupId>com.google.jimfs</groupId> 200 <artifactId>jimfs</artifactId> 201 <scope>test</scope> 202 </dependency> 203 <dependency> 204 <groupId>nl.jqno.equalsverifier</groupId> 205 <artifactId>equalsverifier</artifactId> 206 <scope>test</scope> 207 </dependency> 208 <dependency> 209 <groupId>net.bytebuddy</groupId> 210 <artifactId>byte-buddy</artifactId> 211 <scope>test</scope> 212 </dependency> 213 <dependency> 214 <groupId>commons-codec</groupId> 215 <artifactId>commons-codec</artifactId> 216 <version>${commons-codec.verion}</version> 217 <scope>test</scope> 218 </dependency> 219 <dependency> 220 <artifactId>wiremock-jre8</artifactId> 221 <groupId>com.github.tomakehurst</groupId> 222 <scope>test</scope> 223 </dependency> 224 </dependencies> 225 226 <build> 227 <plugins> 228 <plugin> 229 <groupId>org.apache.maven.plugins</groupId> 230 <artifactId>maven-jar-plugin</artifactId> 231 <configuration> 232 <archive> 233 <manifestEntries> 234 <Automatic-Module-Name>software.amazon.awssdk.transfer.s3</Automatic-Module-Name> 235 </manifestEntries> 236 </archive> 237 </configuration> 238 </plugin> 239 <plugin> 240 <groupId>org.apache.maven.plugins</groupId> 241 <artifactId>maven-javadoc-plugin</artifactId> 242 <version>${maven-javadoc-plugin.version}</version> 243 <executions> 244 <execution> 245 <id>generate-javadocs</id> 246 <goals> 247 <goal>jar</goal> 248 </goals> 249 <configuration> 250 <detectJavaApiLink>false</detectJavaApiLink> 251 <source>8</source> 252 <notree>true</notree> 253 <includeDependencySources>false</includeDependencySources> 254 </configuration> 255 </execution> 256 </executions> 257 </plugin> 258 </plugins> 259 </build> 260 261</project> 262