Skip to content

Commit b7f40a8

Browse files
committed
address feedback
1 parent 5aaee17 commit b7f40a8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ To use the AWS Encryption SDK for Java you must have:
2323

2424
* **Declare a Dependency on the AWS Encryption SDK in Java and it's dependencies**
2525

26-
This library requires the AwsCryptographicMaterialProviders library and KMS client from the AWS SDK for Java V2.
26+
This library requires the AWS Material Providers Library in Java, and the KMS and DynamoDB clients from the AWS Java SDK V2.
2727

2828
The KMS client from the AWS SDK for Java V1 is an **optional** dependency.
2929

30-
**Note:** The AwsCryptographicMaterialProviders library only supports the AWS SDK for Java V2 and requires a HARD dependency on the AWS SDK for Java V2's KMS module, regardless of whether a KMS Keyring is used.
30+
**Note:** The AWS Material Providers Library in Java only supports the AWS SDK for Java V2 and requires a HARD dependency on the AWS SDK for Java V2's KMS and DynamoDB clients, regardless of whether a KMS Keyring or Hierarchical Keyring is used.
3131

3232
* **Via Apache Maven**
3333
Add the following to your project's `pom.xml`.
@@ -56,6 +56,10 @@ To use the AWS Encryption SDK for Java you must have:
5656
<artifactId>aws-cryptographic-material-providers</artifactId>
5757
<version>1.0.2</version>
5858
</dependency>
59+
<dependency>
60+
<groupId>software.amazon.awssdk</groupId>
61+
<artifactId>dynamodb</artifactId>
62+
</dependency>
5963
<dependency>
6064
<groupId>software.amazon.awssdk</groupId>
6165
<artifactId>kms</artifactId>
@@ -79,6 +83,7 @@ To use the AWS Encryption SDK for Java you must have:
7983
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.0.2")
8084
implementation(platform("software.amazon.awssdk:bom:2.20.91"))
8185
implementation("software.amazon.awssdk:kms")
86+
implementation("software.amazon.awssdk:dynamodb")
8287
// The following are optional:
8388
implementation("com.amazonaws:aws-java-sdk:1.12.394")
8489
```

0 commit comments

Comments
 (0)