xref: /aosp_15_r20/external/aws-sdk-java-v2/codegen-lite-maven-plugin/pom.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
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    <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-lite-maven-plugin</artifactId>
29    <packaging>maven-plugin</packaging>
30
31    <name>AWS Java SDK :: Code Generator Lite Maven Plugin</name>
32    <description>The AWS SDK for Java - Code Generator Lite Maven Plugin module holds a mojo to generate region
33        and service metadata for the core SDK.
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-lite</artifactId>
57            <groupId>software.amazon.awssdk</groupId>
58            <version>${awsjavasdk.version}</version>
59        </dependency>
60        <dependency>
61            <artifactId>utils</artifactId>
62            <groupId>software.amazon.awssdk</groupId>
63            <version>${awsjavasdk.version}</version>
64        </dependency>
65        <dependency>
66            <artifactId>maven-plugin-api</artifactId>
67            <groupId>org.apache.maven</groupId>
68        </dependency>
69        <dependency>
70            <artifactId>maven-plugin-annotations</artifactId>
71            <groupId>org.apache.maven.plugin-tools</groupId>
72        </dependency>
73        <dependency>
74            <artifactId>maven-project</artifactId>
75            <groupId>org.apache.maven</groupId>
76        </dependency>
77        <dependency>
78            <artifactId>plexus-utils</artifactId>
79            <groupId>org.codehaus.plexus</groupId>
80        </dependency>
81    </dependencies>
82
83    <build>
84        <plugins>
85            <plugin>
86                <groupId>org.apache.maven.plugins</groupId>
87                <artifactId>maven-plugin-plugin</artifactId>
88                <version>3.6.0</version>
89                <executions>
90                    <execution>
91                        <id>default-descriptor</id>
92                        <phase>process-classes</phase>
93                    </execution>
94                </executions>
95            </plugin>
96        </plugins>
97    </build>
98</project>
99