Skip to content

Commit 29bc3cb

Browse files
author
AWS
committed
AWS SDK for Java 1.12.280
1 parent 368c18a commit 29bc3cb

File tree

505 files changed

+26194
-433
lines changed

Some content is hidden

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

505 files changed

+26194
-433
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# __1.12.280__ __2022-08-11__
2+
## __AWS Backup Storage__
3+
- ### Features
4+
- This is the first public release of AWS Backup Storage. We are exposing some previously-internal APIs for use by external services. These APIs are not meant to be used directly by customers.
5+
6+
## __AWS Glue__
7+
- ### Features
8+
- Add support for Python 3.9 AWS Glue Python Shell jobs
9+
10+
## __AWS Private 5G__
11+
- ### Features
12+
- This is the initial SDK release for AWS Private 5G. AWS Private 5G is a managed service that makes it easy to deploy, operate, and scale your own private mobile network at your on-premises location.
13+
114
# __1.12.279__ __2022-08-10__
215
## __Amazon Data Lifecycle Manager__
316
- ### Features

README.md

Lines changed: 39 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ The **AWS SDK for Java** enables Java developers to easily work with [Amazon Web
44
build scalable solutions with Amazon S3, Amazon DynamoDB, Amazon Glacier, and more. You can get
55
started in minutes using ***Maven*** or by downloading a [single zip file][install-jar].
66

7-
**Note**: A version 2.x of the SDK is available, see the [AWS SDK for Java 2.x](#aws-sdk-for-java-2x) section for more information.
7+
### ���� Note: A version 2.x of the SDK is available, see the [AWS SDK for Java 2.x](#aws-sdk-for-java-2x) section for more information
88

99
* [SDK Homepage][sdk-website]
1010
* [API Docs][docs-api]
1111
* [Developer Guide][docs-guide] ([source][docs-guide-source])
12-
* [Forum][sdk-forum]
1312
* [Issues][sdk-issues]
1413
* [SDK Blog][blog]
1514
* [Getting Help](#getting-help)
@@ -51,7 +50,7 @@ dependencies.
5150
<dependency>
5251
<groupId>com.amazonaws</groupId>
5352
<artifactId>aws-java-sdk-bom</artifactId>
54-
<version>1.12.279</version>
53+
<version>1.12.280</version>
5554
<type>pom</type>
5655
<scope>import</scope>
5756
</dependency>
@@ -123,7 +122,7 @@ GitHub [issues][sdk-issues] is the preferred channel to interact with our team.
123122
* If it turns out that you may have found a bug, please open an [issue][sdk-issues]
124123

125124
## Maintenance and Support for SDK Major Versions
126-
For information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:
125+
For information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Reference Guide:
127126

128127
* [AWS SDKs and Tools Maintenance Policy][maintenance-policy]
129128
* [AWS SDKs and Tools Version Support Matrix][version-matrix]
@@ -139,24 +138,45 @@ A version 2.x of the SDK is generally available. It is a major rewrite of the 1.
139138

140139
For more information see the [AWS SDK for Java 2.x Developer Guide][sdk-v2-dev-guide] or check the project repository in https://github.com/aws/aws-sdk-java-v2.
141140

142-
[aws-iam-credentials]: http://docs.aws.amazon.com/java-sdk/v1/developer-guide/java-dg-roles.html
143-
[aws]: http://aws.amazon.com/
141+
## Maintenance and Support for Java Versions
142+
143+
The AWS Java SDK version 1 (v1) supports Java versions from 7 to 16. The Java 17 version introduces strong encapsulation of internal Java elements, which is not backwards-compatible with the Java SDK v1.
144+
This may cause issues for certain use-cases of the SDK. If you plan to use Java 17+, we recommend that you migrate to
145+
[AWS SDK for Java 2.x][aws-sdk-for-java-2x] that fully supports Java 8, Java 11, and Java 17 Long-Term Support(LTS) releases.
146+
147+
If you are experiencing issues with Java 17+ and unable to migrate to AWS SDK for Java v2 at this time, below are the workarounds that you might find helpful.
148+
Please keep in mind that these workarounds may not work in the future
149+
versions of Java. See [JEP 403: Strongly Encapsulate JDK Internals][jep-403]
150+
and [Breaking Encapsulation][jep-break-encapsulation]
151+
for more details.
152+
153+
**Error: com.amazonaws.AmazonServiceException: Unable to unmarshall
154+
exception response with the unmarshallers provided caused by java.lang.
155+
reflect.InaccessibleObjectException**
156+
157+
- use JVM option `--add-opens java.base/java.lang=ALL-UNNAMED` at JVM startup
158+
159+
**WARNING: Illegal reflective access by com.amazonaws.util.XpathUtils**
160+
161+
- use JVM option `--add-opens=java.xml/com.sun.org.apache.xpath.internal=ALL-UNNAMED` at JVM startup
162+
163+
[aws-iam-credentials]: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/java-dg-roles.html
164+
[aws]: https://aws.amazon.com/
144165
[blog]: https://aws.amazon.com/blogs/developer/category/java/
145-
[docs-api]: http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/index.html
146-
[docs-guide]: http://docs.aws.amazon.com/java-sdk/v1/developer-guide/welcome.html
166+
[docs-api]: https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/index.html
167+
[docs-guide]: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/welcome.html
147168
[docs-guide-source]: https://github.com/awsdocs/aws-java-developer-guide
148-
[docs-java-env]: http://docs.aws.amazon.com/java-sdk/v1/developer-guide/setup-install.html#installing-a-java-development-environment
149-
[docs-signup]: http://docs.aws.amazon.com/java-sdk/v1/developer-guide/signup-create-iam-user.html
150-
[docs-setup]: http://docs.aws.amazon.com/java-sdk/v1/developer-guide/setup-install.html
151-
[install-jar]: http://sdk-for-java.amazonwebservices.com/latest/aws-java-sdk.zip
152-
[sdk-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=70
169+
[docs-java-env]: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/setup-install.html#installing-a-java-development-environment
170+
[docs-signup]: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/signup-create-iam-user.html
171+
[docs-setup]: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/setup-install.html
172+
[install-jar]: https://sdk-for-java.amazonwebservices.com/latest/aws-java-sdk.zip
153173
[sdk-issues]: https://github.com/aws/aws-sdk-java/issues
154-
[sdk-license]: http://aws.amazon.com/apache2.0/
155-
[sdk-website]: http://aws.amazon.com/sdkforjava
174+
[sdk-license]: https://aws.amazon.com/apache2.0/
175+
[sdk-website]: https://aws.amazon.com/sdkforjava
156176
[aws-java-sdk-bom]: https://github.com/aws/aws-sdk-java/tree/master/aws-java-sdk-bom
157177
[release-notes-catalog]: https://aws.amazon.com/releasenotes/Java?browse=1
158178
[changes-file]: ./CHANGELOG.md
159-
[stack-overflow]: http://stackoverflow.com/questions/tagged/aws-java-sdk
179+
[stack-overflow]: https://stackoverflow.com/questions/tagged/aws-java-sdk
160180
[gitter]: https://gitter.im/aws/aws-sdk-java
161181
[features]: https://github.com/aws/aws-sdk-java/issues?q=is%3Aopen+is%3Aissue+label%3A%22feature-request%22
162182
[support-center]: https://console.aws.amazon.com/support/
@@ -165,3 +185,6 @@ For more information see the [AWS SDK for Java 2.x Developer Guide][sdk-v2-dev-g
165185
[sdk-v2-dev-guide]: https://docs.aws.amazon.com/sdk-for-java/v2/developer-guide/welcome.html
166186
[maintenance-policy]: https://docs.aws.amazon.com/credref/latest/refdocs/maint-policy.html
167187
[version-matrix]: https://docs.aws.amazon.com/credref/latest/refdocs/version-support-matrix.html
188+
[jep-break-encapsulation]: https://openjdk.org/jeps/261#Breaking-encapsulation
189+
[jep-403]: https://openjdk.org/jeps/403
190+
[aws-sdk-for-java-2x]: https://github.com/aws/aws-sdk-java-v2

aws-java-sdk-accessanalyzer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-accessanalyzer</artifactId>

aws-java-sdk-account/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-account</artifactId>

aws-java-sdk-acm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acm</artifactId>

aws-java-sdk-acmpca/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acmpca</artifactId>

aws-java-sdk-alexaforbusiness/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>

aws-java-sdk-amplify/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-amplify</artifactId>

aws-java-sdk-amplifybackend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-amplifybackend</artifactId>

aws-java-sdk-amplifyuibuilder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-amplifyuibuilder</artifactId>

aws-java-sdk-api-gateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-api-gateway</artifactId>

aws-java-sdk-apigatewaymanagementapi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apigatewaymanagementapi</artifactId>

aws-java-sdk-apigatewayv2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apigatewayv2</artifactId>

aws-java-sdk-appconfig/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appconfig</artifactId>

aws-java-sdk-appconfigdata/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appconfigdata</artifactId>

aws-java-sdk-appflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appflow</artifactId>

aws-java-sdk-appintegrations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appintegrations</artifactId>

aws-java-sdk-applicationautoscaling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-applicationautoscaling</artifactId>

aws-java-sdk-applicationcostprofiler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-applicationcostprofiler</artifactId>

aws-java-sdk-applicationinsights/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-applicationinsights</artifactId>

aws-java-sdk-appmesh/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appmesh</artifactId>

aws-java-sdk-appregistry/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appregistry</artifactId>

aws-java-sdk-apprunner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-apprunner</artifactId>

aws-java-sdk-appstream/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appstream</artifactId>

aws-java-sdk-appsync/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-appsync</artifactId>

aws-java-sdk-athena/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-athena</artifactId>

aws-java-sdk-auditmanager/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-auditmanager</artifactId>

aws-java-sdk-augmentedairuntime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-augmentedairuntime</artifactId>

aws-java-sdk-autoscaling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-autoscaling</artifactId>

aws-java-sdk-autoscalingplans/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-autoscalingplans</artifactId>

aws-java-sdk-backup/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-backup</artifactId>

aws-java-sdk-backupgateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.12.280-SNAPSHOT</version>
8+
<version>1.12.280</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-backupgateway</artifactId>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source.. = src/main/java,\
2+
src/main/resources
3+
output.. = bin/
4+
5+
bin.includes = LICENSE.txt,\
6+
NOTICE.txt,\
7+
META-INF/,\
8+
.
9+
10+
jre.compilation.profile = JavaSE-1.7

0 commit comments

Comments
 (0)