1*8a52c783SCole Faust<?xml version="1.0"?> 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 --> 16*8a52c783SCole Faust 17*8a52c783SCole Faust<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 18*8a52c783SCole Faust xmlns="http://maven.apache.org/POM/4.0.0" 19*8a52c783SCole Faust xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 20*8a52c783SCole Faust <modelVersion>4.0.0</modelVersion> 21*8a52c783SCole Faust 22*8a52c783SCole Faust <parent> 23*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 24*8a52c783SCole Faust <artifactId>aws-sdk-java-pom</artifactId> 25*8a52c783SCole Faust <version>2.24.3</version> 26*8a52c783SCole Faust <relativePath>../pom.xml</relativePath> 27*8a52c783SCole Faust </parent> 28*8a52c783SCole Faust <artifactId>codegen-maven-plugin</artifactId> 29*8a52c783SCole Faust <packaging>maven-plugin</packaging> 30*8a52c783SCole Faust 31*8a52c783SCole Faust <name>AWS Java SDK :: Code Generator Maven Plugin</name> 32*8a52c783SCole Faust <description>The AWS SDK for Java - Code Generator Maven Plugin module holds a mojo to generate the AWS Java SDK 33*8a52c783SCole Faust clients for AWS services. 34*8a52c783SCole Faust </description> 35*8a52c783SCole Faust <url>https://aws.amazon.com/sdkforjava</url> 36*8a52c783SCole Faust 37*8a52c783SCole Faust <properties> 38*8a52c783SCole Faust <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 39*8a52c783SCole Faust <jre.version>1.8</jre.version> 40*8a52c783SCole Faust </properties> 41*8a52c783SCole Faust 42*8a52c783SCole Faust <dependencyManagement> 43*8a52c783SCole Faust <dependencies> 44*8a52c783SCole Faust <dependency> 45*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 46*8a52c783SCole Faust <artifactId>bom-internal</artifactId> 47*8a52c783SCole Faust <version>${project.version}</version> 48*8a52c783SCole Faust <type>pom</type> 49*8a52c783SCole Faust <scope>import</scope> 50*8a52c783SCole Faust </dependency> 51*8a52c783SCole Faust </dependencies> 52*8a52c783SCole Faust </dependencyManagement> 53*8a52c783SCole Faust 54*8a52c783SCole Faust <dependencies> 55*8a52c783SCole Faust <dependency> 56*8a52c783SCole Faust <artifactId>codegen</artifactId> 57*8a52c783SCole Faust <groupId>software.amazon.awssdk</groupId> 58*8a52c783SCole Faust <version>${awsjavasdk.version}</version> 59*8a52c783SCole Faust </dependency> 60*8a52c783SCole Faust <dependency> 61*8a52c783SCole Faust <groupId>org.junit.jupiter</groupId> 62*8a52c783SCole Faust <artifactId>junit-jupiter</artifactId> 63*8a52c783SCole Faust <scope>compile</scope> 64*8a52c783SCole Faust </dependency> 65*8a52c783SCole Faust <dependency> 66*8a52c783SCole Faust <groupId>org.mockito</groupId> 67*8a52c783SCole Faust <artifactId>mockito-core</artifactId> 68*8a52c783SCole Faust <scope>compile</scope> 69*8a52c783SCole Faust </dependency> 70*8a52c783SCole Faust <dependency> 71*8a52c783SCole Faust <artifactId>maven-plugin-api</artifactId> 72*8a52c783SCole Faust <groupId>org.apache.maven</groupId> 73*8a52c783SCole Faust </dependency> 74*8a52c783SCole Faust <dependency> 75*8a52c783SCole Faust <artifactId>maven-plugin-annotations</artifactId> 76*8a52c783SCole Faust <groupId>org.apache.maven.plugin-tools</groupId> 77*8a52c783SCole Faust </dependency> 78*8a52c783SCole Faust <dependency> 79*8a52c783SCole Faust <artifactId>maven-project</artifactId> 80*8a52c783SCole Faust <groupId>org.apache.maven</groupId> 81*8a52c783SCole Faust </dependency> 82*8a52c783SCole Faust <dependency> 83*8a52c783SCole Faust <artifactId>plexus-utils</artifactId> 84*8a52c783SCole Faust <groupId>org.codehaus.plexus</groupId> 85*8a52c783SCole Faust </dependency> 86*8a52c783SCole Faust </dependencies> 87*8a52c783SCole Faust 88*8a52c783SCole Faust <build> 89*8a52c783SCole Faust <plugins> 90*8a52c783SCole Faust <plugin> 91*8a52c783SCole Faust <groupId>org.apache.maven.plugins</groupId> 92*8a52c783SCole Faust <artifactId>maven-plugin-plugin</artifactId> 93*8a52c783SCole Faust <version>3.6.0</version> 94*8a52c783SCole Faust <executions> 95*8a52c783SCole Faust <execution> 96*8a52c783SCole Faust <id>default-descriptor</id> 97*8a52c783SCole Faust <phase>process-classes</phase> 98*8a52c783SCole Faust </execution> 99*8a52c783SCole Faust </executions> 100*8a52c783SCole Faust </plugin> 101*8a52c783SCole Faust </plugins> 102*8a52c783SCole Faust </build> 103*8a52c783SCole Faust</project> 104