| <?xml version="1.0"?> |
| <!-- |
| ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"). |
| ~ You may not use this file except in compliance with the License. |
| ~ A copy of the License is located at |
| ~ |
| ~ http://aws.amazon.com/apache2.0 |
| ~ |
| ~ or in the "license" file accompanying this file. This file is distributed |
| ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| ~ express or implied. See the License for the specific language governing |
| ~ permissions and limitations under the License. |
| --> |
| |
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>aws-sdk-java-pom</artifactId> |
| <version>2.24.3</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| <artifactId>codegen-maven-plugin</artifactId> |
| <packaging>maven-plugin</packaging> |
| |
| <name>AWS Java SDK :: Code Generator Maven Plugin</name> |
| <description>The AWS SDK for Java - Code Generator Maven Plugin module holds a mojo to generate the AWS Java SDK |
| clients for AWS services. |
| </description> |
| <url>https://aws.amazon.com/sdkforjava</url> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <jre.version>1.8</jre.version> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>bom-internal</artifactId> |
| <version>${project.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <artifactId>codegen</artifactId> |
| <groupId>software.amazon.awssdk</groupId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <artifactId>maven-plugin-api</artifactId> |
| <groupId>org.apache.maven</groupId> |
| </dependency> |
| <dependency> |
| <artifactId>maven-plugin-annotations</artifactId> |
| <groupId>org.apache.maven.plugin-tools</groupId> |
| </dependency> |
| <dependency> |
| <artifactId>maven-project</artifactId> |
| <groupId>org.apache.maven</groupId> |
| </dependency> |
| <dependency> |
| <artifactId>plexus-utils</artifactId> |
| <groupId>org.codehaus.plexus</groupId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-plugin-plugin</artifactId> |
| <version>3.6.0</version> |
| <executions> |
| <execution> |
| <id>default-descriptor</id> |
| <phase>process-classes</phase> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |