Skip to content
Closed
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
7 changes: 2 additions & 5 deletions .github/workflows/ci_examples_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Build and locally deploy dependencies for examples
shell: bash
working-directory: ./DynamoDbEncryption
working-directory: ./submodules/MaterialProviders/AwsCryptographicMaterialProviders
run: |
# This works because `node` is installed by default on GHA runners
CORES=$(node -e 'console.log(os.cpus().length)')
Expand All @@ -96,7 +96,4 @@ jobs:
working-directory: ./Examples
run: |
# Run simple examples
gradle -p runtimes/java/DynamoDbEncryption test
# Run migration examples
gradle -p runtimes/java/Migration/PlaintextToAWSDBE test
gradle -p runtimes/java/Migration/DDBECToAWSDBE test
gradle -p runtimes/java/DynamoDbEncryption test
2 changes: 1 addition & 1 deletion .github/workflows/ci_examples_net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Compile ${{ matrix.library }} implementation
shell: bash
working-directory: ./${{ matrix.library }}
working-directory: ./submodules/MaterialProviders/AwsCryptographicMaterialProviders
run: |
# This works because `node` is installed by default on GHA runners
CORES=$(node -e 'console.log(os.cpus().length)')
Expand Down
4 changes: 2 additions & 2 deletions Examples/runtimes/java/DynamoDbEncryption/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ repositories {
}

dependencies {
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:${ddbecVersion}")
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:${mplVersion}")
implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.9.0")
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.11.1-SNAPSHOT")

implementation(platform("software.amazon.awssdk:bom:2.19.1"))
implementation("software.amazon.awssdk:arns")
Expand Down
3 changes: 2 additions & 1 deletion Examples/runtimes/net/Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="../../../DynamoDbEncryption/runtimes/net/DynamoDbEncryption.csproj" />
<ProjectReference Include="../../../submodules/MaterialProviders/AwsCryptographicMaterialProviders/runtimes/net/MPL.csproj"/>
<PackageReference Include="AWS.Cryptography.DbEncryptionSDK.DynamoDb" Version="3.7.0" />
<PackageReference Include="AWSSDK.SecurityToken" Version="3.7.202.5"/>
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion submodules/MaterialProviders
Loading