Skip to content
Open
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
16 changes: 8 additions & 8 deletions DynamoDbEncryption/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,20 @@ dependencies {
implementation("software.amazon.smithy.dafny:conversion:${smithyDafnyJavaConversionVersion}")
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:${mplVersion}")

implementation(platform("software.amazon.awssdk:bom:2.30.18"))
implementation(platform("software.amazon.awssdk:bom:2.46.21"))
implementation("software.amazon.awssdk:dynamodb")
implementation("software.amazon.awssdk:dynamodb-enhanced")
implementation("software.amazon.awssdk:kms")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
testImplementation("org.junit.jupiter:junit-jupiter-api:6.1.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:6.1.1")

// For the DDB-EC with SDK V2
implementation("io.netty:netty-common:4.2.9.Final")
implementation("io.netty:netty-common:4.2.15.Final")

testImplementation("software.amazon.awssdk:url-connection-client:2.41.17")
testImplementation("software.amazon.awssdk:url-connection-client:2.46.21")
// https://mvnrepository.com/artifact/org.testng/testng
testImplementation("org.testng:testng:7.5")
testImplementation("org.testng:testng:7.12.0")
// https://mvnrepository.com/artifact/com.amazonaws/DynamoDBLocal
testImplementation("com.amazonaws:DynamoDBLocal:1.+")
// As of 1.21.0 DynamoDBLocal does not support Apple Silicon
Expand All @@ -118,8 +118,8 @@ dependencies {
// https://mvnrepository.com/artifact/edu.umd.cs.mtc/multithreadedtc
testImplementation("edu.umd.cs.mtc:multithreadedtc:1.01")
// https://mvnrepository.com/artifact/org.projectlombok/lombok
testImplementation("org.projectlombok:lombok:1.18.36")
testAnnotationProcessor("org.projectlombok:lombok:1.18.36")
testImplementation("org.projectlombok:lombok:1.18.46")
testAnnotationProcessor("org.projectlombok:lombok:1.18.46")
}

publishing {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
44 changes: 24 additions & 20 deletions DynamoDbEncryption/runtimes/java/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

174 changes: 82 additions & 92 deletions DynamoDbEncryption/runtimes/java/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions TestVectors/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ dependencies {
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:${ddbecVersion}")
implementation("software.amazon.cryptography:TestAwsCryptographicMaterialProviders:${mplVersion}")

implementation(platform("software.amazon.awssdk:bom:2.30.18"))
implementation(platform("software.amazon.awssdk:bom:2.46.21"))
implementation("software.amazon.awssdk:dynamodb")
implementation("software.amazon.awssdk:dynamodb-enhanced")
implementation("software.amazon.awssdk:core:2.30.18")
implementation("software.amazon.awssdk:core:2.46.21")
implementation("software.amazon.awssdk:kms")
testImplementation("com.amazonaws:DynamoDBLocal:2.+")
// This is where we gather the SQLLite files to copy over
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading