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-elasticache</artifactId> 12 <name>AWS Java SDK for Amazon ElastiCache</name> 13 <description>The AWS Java SDK for Amazon ElastiCache module holds the client classes that are used for communicating with Amazon ElastiCache 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-core</artifactId> 20 <groupId>com.amazonaws</groupId> 21 <optional>false</optional> 22 <version>1.11.18</version> 23 </dependency> 24 </dependencies> 25 26 <build> 27 <plugins> 28 <plugin> 29 <groupId>org.apache.maven.plugins</groupId> 30 <artifactId>maven-compiler-plugin</artifactId> 31 </plugin> 32 33 <plugin> 34 <groupId>org.apache.maven.plugins</groupId> 35 <artifactId>maven-javadoc-plugin</artifactId> 36 </plugin> 37 </plugins> 38 </build> 39 40 <!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version --> 41 <!-- For more information on the plugin, see https://github.com/siom79/japicmp --> 42 <profiles> 43 <profile> 44 <id>versiondiff</id> 45 <build> 46 <plugins> 47 <plugin> 48 <groupId>com.github.siom79.japicmp</groupId> 49 <artifactId>japicmp-maven-plugin</artifactId> 50 <version>0.5.0</version> 51 <executions> 52 <execution> 53 <phase>verify</phase> 54 <goals> 55 <goal>cmp</goal> 56 </goals> 57 </execution> 58 </executions> 59 <configuration> 60 <oldVersion> 61 <dependency> 62 <groupId>com.amazonaws</groupId> 63 <artifactId>aws-java-sdk-elasticache</artifactId> 64 <version>RELEASE</version> 65 </dependency> 66 </oldVersion> 67 <newVersion> 68 <file> 69 <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 70 </file> 71 </newVersion> 72 <parameter> 73 <onlyModified>true</onlyModified> 74 <accessModifier>public</accessModifier> 75 <breakBuildOnModifications>false</breakBuildOnModifications> 76 <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 77 <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 78 </parameter> 79 </configuration> 80 </plugin> 81 </plugins> 82 </build> 83 </profile> 84 </profiles> 85 </project> 86