1*8a52c783SCole Faust<?xml version="1.0" encoding="UTF-8" standalone="no"?> 2*8a52c783SCole Faust<!-- 3*8a52c783SCole Faust ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 4*8a52c783SCole Faust ~ 5*8a52c783SCole Faust ~ Licensed under the Apache License, Version 2.0 (the "License"). 6*8a52c783SCole Faust ~ You may not use this file except in compliance with the License. 7*8a52c783SCole Faust ~ A copy of the License is located at 8*8a52c783SCole Faust ~ 9*8a52c783SCole Faust ~ http://aws.amazon.com/apache2.0 10*8a52c783SCole Faust ~ 11*8a52c783SCole Faust ~ or in the "license" file accompanying this file. This file is distributed 12*8a52c783SCole Faust ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 13*8a52c783SCole Faust ~ express or implied. See the License for the specific language governing 14*8a52c783SCole Faust ~ permissions and limitations under the License. 15*8a52c783SCole Faust --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 16*8a52c783SCole Faust <modelVersion>4.0.0</modelVersion> 17*8a52c783SCole Faust <parent> 18*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 19*8a52c783SCole Faust <artifactId>services</artifactId> 20*8a52c783SCole Faust <version>2.24.3</version> 21*8a52c783SCole Faust </parent> 22*8a52c783SCole Faust <artifactId>launchwizard</artifactId> 23*8a52c783SCole Faust <name>AWS Java SDK :: Services :: Launch Wizard</name> 24*8a52c783SCole Faust <description>The AWS Java SDK for Launch Wizard module holds the client classes that are used for 25*8a52c783SCole Faust communicating with Launch Wizard. 26*8a52c783SCole Faust </description> 27*8a52c783SCole Faust <url>https://aws.amazon.com/sdkforjava</url> 28*8a52c783SCole Faust <build> 29*8a52c783SCole Faust <plugins> 30*8a52c783SCole Faust <plugin> 31*8a52c783SCole Faust <groupId>org.apache.maven.plugins</groupId> 32*8a52c783SCole Faust <artifactId>maven-jar-plugin</artifactId> 33*8a52c783SCole Faust <configuration> 34*8a52c783SCole Faust <archive> 35*8a52c783SCole Faust <manifestEntries> 36*8a52c783SCole Faust <Automatic-Module-Name>software.amazon.awssdk.services.launchwizard</Automatic-Module-Name> 37*8a52c783SCole Faust </manifestEntries> 38*8a52c783SCole Faust </archive> 39*8a52c783SCole Faust </configuration> 40*8a52c783SCole Faust </plugin> 41*8a52c783SCole Faust </plugins> 42*8a52c783SCole Faust </build> 43*8a52c783SCole Faust <dependencies> 44*8a52c783SCole Faust <dependency> 45*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 46*8a52c783SCole Faust <artifactId>protocol-core</artifactId> 47*8a52c783SCole Faust <version>${awsjavasdk.version}</version> 48*8a52c783SCole Faust </dependency> 49*8a52c783SCole Faust <dependency> 50*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 51*8a52c783SCole Faust <artifactId>aws-json-protocol</artifactId> 52*8a52c783SCole Faust <version>${awsjavasdk.version}</version> 53*8a52c783SCole Faust </dependency> 54*8a52c783SCole Faust <dependency> 55*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 56*8a52c783SCole Faust <artifactId>http-auth-aws</artifactId> 57*8a52c783SCole Faust <version>${awsjavasdk.version}</version> 58*8a52c783SCole Faust </dependency> 59*8a52c783SCole Faust </dependencies> 60*8a52c783SCole Faust</project> 61