File tree Expand file tree Collapse file tree 6 files changed +19
-14
lines changed Expand file tree Collapse file tree 6 files changed +19
-14
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,8 +17,10 @@ plugins {
17
17
}
18
18
19
19
var props = Properties ().apply {
20
- load(FileInputStream (File (rootProject.rootDir, " ../../project.properties" )))
20
+ load(FileInputStream (File (rootProject.rootDir, " ../../../ project.properties" )))
21
21
}
22
+ var mplVersion = props.getProperty(" mplDependencyJavaVersion" )
23
+
22
24
group = " software.amazon.cryptography"
23
25
version = " 1.0.0-SNAPSHOT"
24
26
description = " AwsEncryptionSdk"
@@ -32,7 +34,7 @@ repositories {
32
34
dependencies {
33
35
implementation(" org.dafny:DafnyRuntime:4.9.0" )
34
36
implementation(" software.amazon.smithy.dafny:conversion:0.1" )
35
- implementation(" software.amazon.cryptography:aws-cryptographic-material-providers:1.8.0 " )
37
+ implementation(" software.amazon.cryptography:aws-cryptographic-material-providers:${mplVersion} " )
36
38
37
39
// Use JUnit test framework.
38
40
testImplementation(" junit:junit:4.13.2" )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import java.io.File
2
+ import java.io.FileInputStream
3
+ import java.util.Properties
4
+
1
5
tasks.wrapper {
2
6
gradleVersion = " 7.6"
3
7
}
@@ -8,6 +12,11 @@ plugins {
8
12
`application`
9
13
}
10
14
15
+ var props = Properties ().apply {
16
+ load(FileInputStream (File (rootProject.rootDir, " ../../../project.properties" )))
17
+ }
18
+ var mplVersion = props.getProperty(" mplDependencyJavaVersion" )
19
+
11
20
group = " software.amazon.cryptography"
12
21
version = " 1.0.0-SNAPSHOT"
13
22
description = " AwsEncryptionSDKJavaTestVectors"
@@ -33,8 +42,8 @@ repositories {
33
42
dependencies {
34
43
implementation(" org.dafny:DafnyRuntime:4.8.0" )
35
44
implementation(" software.amazon.smithy.dafny:conversion:0.1" )
36
- implementation(" software.amazon.cryptography:aws-cryptographic-material-providers:1.8.0 " )
37
- implementation(" software.amazon.cryptography:TestAwsCryptographicMaterialProviders:1.8.0-SNAPSHOT " )
45
+ implementation(" software.amazon.cryptography:aws-cryptographic-material-providers:${mplVersion} " )
46
+ implementation(" software.amazon.cryptography:TestAwsCryptographicMaterialProviders:${mplVersion} " )
38
47
implementation(" software.amazon.cryptography:aws-encryption-sdk:1.0.0-SNAPSHOT" )
39
48
implementation(" com.amazonaws:aws-encryption-sdk-java:3.0.1" )
40
49
implementation(platform(" software.amazon.awssdk:bom:2.25.1" ))
Original file line number Diff line number Diff line change
1
+ # This file stores the top level dafny version information.
2
+ # All elements of the project need to agree on this version.
1
3
dafnyVersion =4.9.0
2
4
dafnyVerifyVersion =4.9.0
3
5
dafnyFormatVersion =4.9.0
4
6
projectJavaVersion =4.1.0
5
- mplDependencyJavaVersion =1.8.0
7
+ mplDependencyJavaVersion =1.9.0-SNAPSHOT
6
8
dafnyRuntimeJavaVersion =4.9.0
7
9
smithyDafnyJavaConversionVersion =0.1.1
You can’t perform that action at this time.
0 commit comments