xref: /aosp_15_r20/external/aws-sdk-java-v2/build-tools/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
21    <modelVersion>4.0.0</modelVersion>
22
23    <groupId>software.amazon.awssdk</groupId>
24    <artifactId>build-tools</artifactId>
25    <version>1.0</version>
26
27    <name>AWS Java SDK :: Build Tools</name>
28    <description>This package holds the resources used for checkstyle and spotbugs.</description>
29
30    <build>
31        <plugins>
32            <plugin>
33                <groupId>org.apache.maven.plugins</groupId>
34                <artifactId>maven-compiler-plugin</artifactId>
35                <version>3.8.0</version>
36                <configuration>
37                    <source>1.8</source>
38                    <target>1.8</target>
39                </configuration>
40            </plugin>
41
42            <plugin>
43                <groupId>org.apache.maven.plugins</groupId>
44                <artifactId>maven-javadoc-plugin</artifactId>
45                <version>3.0.1</version>
46            </plugin>
47
48            <plugin>
49                <groupId>org.codehaus.mojo</groupId>
50                <artifactId>build-helper-maven-plugin</artifactId>
51                <version>3.3.0</version>
52            </plugin>
53
54            <plugin>
55                <groupId>org.apache.maven.plugins</groupId>
56                <artifactId>maven-deploy-plugin</artifactId>
57                <version>2.8.2</version>
58                <configuration>
59                    <skip>true</skip>
60                </configuration>
61            </plugin>
62        </plugins>
63
64    </build>
65
66    <dependencies>
67        <dependency>
68            <groupId>com.puppycrawl.tools</groupId>
69            <artifactId>checkstyle</artifactId>
70            <version>8.42</version>
71        </dependency>
72        <dependency>
73            <groupId>com.github.spotbugs</groupId>
74            <artifactId>spotbugs</artifactId>
75            <version>4.2.3</version>
76        </dependency>
77    </dependencies>
78
79</project>
80