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