1 <?xml version="1.0"?> 2 <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" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 4 <modelVersion>4.0.0</modelVersion> 5 <parent> 6 <groupId>com.amazonaws</groupId> 7 <artifactId>aws-java-sdk-pom</artifactId> 8 <version>1.11.18</version> 9 </parent> 10 <groupId>com.amazonaws</groupId> 11 <artifactId>aws-java-sdk-glacier</artifactId> 12 <name>AWS Java SDK for Amazon Glacier</name> 13 <description>The AWS Java SDK for Amazon Glacier module holds the client classes that are used for communicating with Amazon Glacier Service</description> 14 <url>https://aws.amazon.com/sdkforjava</url> 15 16 <!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed --> 17 <dependencies> 18 <dependency> 19 <artifactId>aws-java-sdk-sqs</artifactId> 20 <groupId>com.amazonaws</groupId> 21 <optional>false</optional> 22 <version>1.11.18</version> 23 </dependency> 24 <dependency> 25 <artifactId>aws-java-sdk-sns</artifactId> 26 <groupId>com.amazonaws</groupId> 27 <optional>false</optional> 28 <version>1.11.18</version> 29 </dependency> 30 <dependency> 31 <artifactId>aws-java-sdk-s3</artifactId> 32 <groupId>com.amazonaws</groupId> 33 <optional>false</optional> 34 <version>1.11.18</version> 35 </dependency> 36 <dependency> 37 <artifactId>aws-java-sdk-core</artifactId> 38 <groupId>com.amazonaws</groupId> 39 <optional>false</optional> 40 <version>1.11.18</version> 41 </dependency> 42 </dependencies> 43 44 <build> 45 <plugins> 46 <plugin> 47 <groupId>org.apache.maven.plugins</groupId> 48 <artifactId>maven-compiler-plugin</artifactId> 49 </plugin> 50 51 <plugin> 52 <groupId>org.apache.maven.plugins</groupId> 53 <artifactId>maven-javadoc-plugin</artifactId> 54 </plugin> 55 </plugins> 56 </build> 57 58 <!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version --> 59 <!-- For more information on the plugin, see https://github.com/siom79/japicmp --> 60 <profiles> 61 <profile> 62 <id>versiondiff</id> 63 <build> 64 <plugins> 65 <plugin> 66 <groupId>com.github.siom79.japicmp</groupId> 67 <artifactId>japicmp-maven-plugin</artifactId> 68 <version>0.5.0</version> 69 <executions> 70 <execution> 71 <phase>verify</phase> 72 <goals> 73 <goal>cmp</goal> 74 </goals> 75 </execution> 76 </executions> 77 <configuration> 78 <oldVersion> 79 <dependency> 80 <groupId>com.amazonaws</groupId> 81 <artifactId>aws-java-sdk-glacier</artifactId> 82 <version>RELEASE</version> 83 </dependency> 84 </oldVersion> 85 <newVersion> 86 <file> 87 <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 88 </file> 89 </newVersion> 90 <parameter> 91 <onlyModified>true</onlyModified> 92 <accessModifier>public</accessModifier> 93 <breakBuildOnModifications>false</breakBuildOnModifications> 94 <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 95 <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 96 </parameter> 97 </configuration> 98 </plugin> 99 </plugins> 100 </build> 101 </profile> 102 </profiles> 103 </project> 104