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>http-clients</artifactId> 22 <groupId>software.amazon.awssdk</groupId> 23 <version>2.24.3</version> 24 </parent> 25 <modelVersion>4.0.0</modelVersion> 26 27 <artifactId>url-connection-client</artifactId> 28 <name>AWS Java SDK :: HTTP Clients :: URL Connection</name> 29 30 <dependencies> 31 <dependency> 32 <groupId>software.amazon.awssdk</groupId> 33 <artifactId>utils</artifactId> 34 <version>${awsjavasdk.version}</version> 35 </dependency> 36 <dependency> 37 <groupId>software.amazon.awssdk</groupId> 38 <artifactId>annotations</artifactId> 39 <version>${awsjavasdk.version}</version> 40 </dependency> 41 <dependency> 42 <groupId>software.amazon.awssdk</groupId> 43 <artifactId>http-client-spi</artifactId> 44 <version>${awsjavasdk.version}</version> 45 </dependency> 46 <dependency> 47 <groupId>software.amazon.awssdk</groupId> 48 <artifactId>http-client-tests</artifactId> 49 <version>${awsjavasdk.version}</version> 50 <scope>test</scope> 51 </dependency> 52 53 <dependency> 54 <groupId>org.junit.jupiter</groupId> 55 <artifactId>junit-jupiter</artifactId> 56 <scope>test</scope> 57 </dependency> 58 <dependency> 59 <groupId>org.junit.vintage</groupId> 60 <artifactId>junit-vintage-engine</artifactId> 61 <scope>test</scope> 62 </dependency> 63 <dependency> 64 <groupId>software.amazon.awssdk</groupId> 65 <artifactId>s3</artifactId> 66 <version>${awsjavasdk.version}</version> 67 <scope>test</scope> 68 </dependency> 69 <dependency> 70 <artifactId>service-test-utils</artifactId> 71 <groupId>software.amazon.awssdk</groupId> 72 <version>${awsjavasdk.version}</version> 73 <scope>test</scope> 74 </dependency> 75 <dependency> 76 <groupId>org.assertj</groupId> 77 <artifactId>assertj-core</artifactId> 78 <scope>test</scope> 79 </dependency> 80 <dependency> 81 <groupId>software.amazon.awssdk</groupId> 82 <artifactId>sdk-core</artifactId> 83 <version>${awsjavasdk.version}</version> 84 <scope>test</scope> 85 </dependency> 86 <dependency> 87 <groupId>software.amazon.awssdk</groupId> 88 <artifactId>regions</artifactId> 89 <version>${awsjavasdk.version}</version> 90 <scope>test</scope> 91 </dependency> 92 <dependency> 93 <groupId>software.amazon.awssdk</groupId> 94 <artifactId>test-utils</artifactId> 95 <version>${awsjavasdk.version}</version> 96 <scope>test</scope> 97 </dependency> 98 <dependency> 99 <groupId>org.apache.logging.log4j</groupId> 100 <artifactId>log4j-api</artifactId> 101 <scope>test</scope> 102 </dependency> 103 <dependency> 104 <groupId>org.apache.logging.log4j</groupId> 105 <artifactId>log4j-core</artifactId> 106 <scope>test</scope> 107 </dependency> 108 <dependency> 109 <groupId>org.apache.logging.log4j</groupId> 110 <artifactId>log4j-slf4j-impl</artifactId> 111 <scope>test</scope> 112 </dependency> 113 <dependency> 114 <groupId>javax.servlet</groupId> 115 <artifactId>javax.servlet-api</artifactId> 116 <version>3.1.0</version> 117 <scope>test</scope> 118 </dependency> 119 <dependency> 120 <groupId>org.eclipse.jetty</groupId> 121 <artifactId>jetty-server</artifactId> 122 <scope>test</scope> 123 </dependency> 124 <dependency> 125 <groupId>com.github.tomakehurst</groupId> 126 <artifactId>wiremock-jre8</artifactId> 127 <scope>test</scope> 128 </dependency> 129 </dependencies> 130 131 <build> 132 <plugins> 133 <plugin> 134 <groupId>org.apache.maven.plugins</groupId> 135 <artifactId>maven-jar-plugin</artifactId> 136 <configuration> 137 <archive> 138 <manifestEntries> 139 <Automatic-Module-Name>software.amazon.awssdk.http.urlconnection</Automatic-Module-Name> 140 </manifestEntries> 141 </archive> 142 </configuration> 143 </plugin> 144 </plugins> 145 </build> 146</project> 147