Skip to content

Commit

Permalink
AWS SDK for Java 1.10.7
Browse files Browse the repository at this point in the history
This release includes service updates to Amazon S3 and Amazon CloudWatch Logs. Also included is an enhancement to ProfileCredentialsProvider and a fix for the Amazon DynamoDB Streams client. http://aws-marketing.integ.amazon.com/releasenotes/4151811381953705
  • Loading branch information
AWS committed Jul 28, 2015
1 parent 59a3b37 commit 6cc1a47
Show file tree
Hide file tree
Showing 157 changed files with 17,456 additions and 9,273 deletions.
53 changes: 32 additions & 21 deletions aws-java-sdk-autoscaling/pom.xml
@@ -1,35 +1,46 @@
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.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"
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> <modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.10.7-SNAPSHOT</version>
</parent>
<groupId>com.amazonaws</groupId> <groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-autoscaling</artifactId> <artifactId>aws-java-sdk-autoscaling</artifactId>
<packaging>jar</packaging>
<name>AWS Java SDK for Auto Scaling</name> <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> <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> <url>https://aws.amazon.com/sdkforjava</url>

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

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

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

<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
</plugin> </plugin>
</plugins> </plugins>
</build> </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> <profiles>
<profile> <profile>
<id>versiondiff</id> <id>versiondiff</id>
Expand All @@ -39,14 +50,6 @@
<groupId>com.github.siom79.japicmp</groupId> <groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId> <artifactId>japicmp-maven-plugin</artifactId>
<version>0.5.0</version> <version>0.5.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
<configuration> <configuration>
<oldVersion> <oldVersion>
<dependency> <dependency>
Expand All @@ -68,6 +71,14 @@
<onlyBinaryIncompatible>false</onlyBinaryIncompatible> <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
</parameter> </parameter>
</configuration> </configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
Expand Down
Expand Up @@ -47,7 +47,7 @@ public class AmazonAutoScalingAsyncClient extends AmazonAutoScalingClient
/** /**
* Executor service for executing asynchronous requests. * Executor service for executing asynchronous requests.
*/ */
private ExecutorService executorService; private final ExecutorService executorService;


private static final int DEFAULT_THREAD_POOL_SIZE = 50; private static final int DEFAULT_THREAD_POOL_SIZE = 50;


Expand Down

0 comments on commit 6cc1a47

Please sign in to comment.