Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions DynamoDbEncryption/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ java {
srcDir("src/main/dafny-generated")
srcDir("src/main/smithy-generated")
srcDir("src/main/sdkv1")
srcDir("src/main/sdkv2")
}
sourceSets["test"].java {
srcDir("src/test")
Expand Down Expand Up @@ -91,8 +92,12 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")

// For the DDB-EC v1
implementation("com.amazonaws:aws-java-sdk-dynamodb:1.12.780")
// For the DDB-EC with SDK v1
compileOnly("com.amazonaws:aws-java-sdk-dynamodb:1.12.780")
// For the DDB-EC with SDK V2
implementation("io.netty:netty-common:4.2.9.Final")

testImplementation("software.amazon.awssdk:url-connection-client:2.41.17")
// https://mvnrepository.com/artifact/org.testng/testng
testImplementation("org.testng:testng:7.5")
// https://mvnrepository.com/artifact/com.amazonaws/DynamoDBLocal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public DynamoDbClient createClient() {
// The region is meaningless for local DynamoDb but required for client builder validation
.region(Region.US_EAST_1)
.credentialsProvider(StaticCredentialsProvider.create(
AwsBasicCredentials.create("dummy-key", "dummy-secret")))
AwsBasicCredentials.create("dummykey", "dummysecret")))
.build();
}

Expand Down
Loading