Skip to content

Commit f671c0f

Browse files
author
AWS
committed
AWS SDK for Java 1.11.4
1 parent dbcf750 commit f671c0f

File tree

251 files changed

+82231
-64128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+82231
-64128
lines changed

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ jdk:
66
- oraclejdk8
77
env:
88
- MODULES_TO_SKIP=\!aws-java-sdk-osgi
9-
- MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator
9+
- MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator,\!aws-java-sdk-codegen-maven-plugin
1010
matrix:
1111
exclude:
1212
- jdk: openjdk6
1313
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi
1414
- jdk: openjdk7
15-
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator
15+
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator,\!aws-java-sdk-codegen-maven-plugin
1616
- jdk: oraclejdk7
17-
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator
17+
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator,\!aws-java-sdk-codegen-maven-plugin
1818
- jdk: oraclejdk8
19-
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator
19+
env: MODULES_TO_SKIP=\!aws-java-sdk-osgi,\!aws-java-sdk-code-generator,\!aws-java-sdk-codegen-maven-plugin
2020

2121
install: /bin/true
2222
sudo: false

NOTICE.txt

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ THIRD PARTY COMPONENTS
99
**********************
1010
This software includes third party software subject to the following copyrights:
1111
- XML parsing and utility functions from JetS3t - Copyright 2006-2009 James Murty.
12-
- JSON parsing and utility functions from JSON.org - Copyright 2002 JSON.org.
1312
- PKCS#1 PEM encoded private key parsing and utility functions from oauth.googlecode.com - Copyright 1998-2010 AOL Inc.
1413

1514
The licenses for these third party components are included in LICENSE.txt

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies.
3939
<dependency>
4040
<groupId>com.amazonaws</groupId>
4141
<artifactId>aws-java-sdk-bom</artifactId>
42-
<version>1.11.3</version>
42+
<version>1.11.4</version>
4343
<type>pom</type>
4444
<scope>import</scope>
4545
</dependency>

aws-java-sdk-acm/pom.xml

+15-6
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,40 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.4-SNAPSHOT</version>
8+
<version>1.11.4</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acm</artifactId>
1212
<name>AWS Java SDK for AWS Certificate Manager</name>
1313
<description>The AWS Java SDK for AWS Certificate Manager module holds the client classes that are used for communicating with AWS Certificate Manager service.</description>
1414
<url>https://aws.amazon.com/sdkforjava</url>
15+
16+
<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed -->
1517
<dependencies>
1618
<dependency>
17-
<groupId>com.amazonaws</groupId>
18-
<artifactId>aws-java-sdk-core</artifactId>
19-
<version>1.11.3</version>
20-
<optional>false</optional>
19+
<artifactId>aws-java-sdk-core</artifactId>
20+
<groupId>com.amazonaws</groupId>
21+
<optional>false</optional>
22+
<version>1.11.4</version>
2123
</dependency>
22-
</dependencies>
24+
</dependencies>
25+
2326
<build>
2427
<plugins>
2528
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
2630
<artifactId>maven-compiler-plugin</artifactId>
2731
</plugin>
32+
2833
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
2935
<artifactId>maven-javadoc-plugin</artifactId>
3036
</plugin>
3137
</plugins>
3238
</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 -->
3342
<profiles>
3443
<profile>
3544
<id>versiondiff</id>

0 commit comments

Comments
 (0)