Skip to content

Commit

Permalink
AWS SDK for Java 1.10.12
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Aug 20, 2015
1 parent 2c580fb commit 4cfb7e8
Show file tree
Hide file tree
Showing 100 changed files with 8,114 additions and 7,366 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -26,7 +26,7 @@ The recommended way to use the AWS SDK for Java in your project is to consume it
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.10.11</version>
<version>1.10.12</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
53 changes: 32 additions & 21 deletions aws-java-sdk-autoscaling/pom.xml
@@ -1,35 +1,46 @@
<?xml version="1.0"?>
<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"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.10.12-SNAPSHOT</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-autoscaling</artifactId>
<packaging>jar</packaging>
<name>AWS Java SDK for Auto Scaling</name>
<description>The AWS Java SDK for Auto Scaling module holds the client classes that are used for communicating with Auto Scaling Service</description>
<url>https://aws.amazon.com/sdkforjava</url>

<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.10.12</version>
</parent>

<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed -->
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.10.11</version>
<optional>false</optional>
<artifactId>aws-java-sdk-core</artifactId>
<groupId>com.amazonaws</groupId>
<optional>false</optional>
<version>1.10.12</version>
</dependency>
</dependencies>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version -->
<!-- For more information on the plugin, see https://github.com/siom79/japicmp -->
<profiles>
<profile>
<id>versiondiff</id>
Expand All @@ -39,14 +50,6 @@
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.5.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
<configuration>
<oldVersion>
<dependency>
Expand All @@ -68,6 +71,14 @@
<onlyBinaryIncompatible>false</onlyBinaryIncompatible>
</parameter>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 4cfb7e8

Please sign in to comment.