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