File tree Expand file tree Collapse file tree 6 files changed +6
-14
lines changed
http-clients/aws-crt-client
src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests Expand file tree Collapse file tree 6 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 28
28
<artifactId >aws-crt-client</artifactId >
29
29
<name >AWS Java SDK :: HTTP Clients :: AWS Common Runtime Client</name >
30
30
<packaging >jar</packaging >
31
- <version >${awsjavasdk.version} </version >
32
31
33
32
<properties >
34
33
<awsjavasdk .version>${project.parent.version} </awsjavasdk .version>
Original file line number Diff line number Diff line change 133
133
<testng .version>7.1.0</testng .version> <!-- TCK Tests -->
134
134
<commons-lang .verson>2.6</commons-lang .verson>
135
135
<netty-open-ssl-version >2.0.61.Final</netty-open-ssl-version >
136
- <dynamodb-local .version>1.16 .0</dynamodb-local .version>
136
+ <dynamodb-local .version>1.25 .0</dynamodb-local .version>
137
137
<sqllite .version>1.0.392</sqllite .version>
138
138
<blockhound .version>1.0.8.RELEASE</blockhound .version>
139
139
<jetty .version>9.4.45.v20220203</jetty .version>
Original file line number Diff line number Diff line change 27
27
<name >AWS Java SDK :: DynamoDB :: Enhanced Client</name >
28
28
<url >https://aws.amazon.com/sdkforjava</url >
29
29
30
- <repositories >
31
- <repository >
32
- <id >dynamodblocal</id >
33
- <name >AWS DynamoDB Local Release Repository</name >
34
- <url >https://s3-us-west-2.amazonaws.com/dynamodb-local/release</url >
35
- </repository >
36
- </repositories >
37
-
38
30
<properties >
39
31
<awsjavasdk .version>${project.parent.version} </awsjavasdk .version>
40
32
<jre .version>1.8</jre .version>
94
86
<systemPropertyVariables >
95
87
<sqlite4java .library.path>${project.build.directory} /native-libs</sqlite4java .library.path>
96
88
</systemPropertyVariables >
89
+ <environmentVariables >
90
+ <DDB_LOCAL_TELEMETRY >0</DDB_LOCAL_TELEMETRY >
91
+ </environmentVariables >
97
92
</configuration >
98
93
</plugin >
99
94
</plugins >
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ DynamoDbClient createClient() {
76
76
// The region is meaningless for local DynamoDb but required for client builder validation
77
77
.region (Region .US_EAST_1 )
78
78
.credentialsProvider (StaticCredentialsProvider .create (
79
- AwsBasicCredentials .create ("dummy-key " , "dummy-secret " )))
79
+ AwsBasicCredentials .create ("dummykey " , "dummysecret " )))
80
80
.overrideConfiguration (o -> o .addExecutionInterceptor (new VerifyUserAgentInterceptor ()))
81
81
.build ();
82
82
}
@@ -87,7 +87,7 @@ DynamoDbAsyncClient createAsyncClient() {
87
87
.endpointOverride (URI .create (endpoint ))
88
88
.region (Region .US_EAST_1 )
89
89
.credentialsProvider (StaticCredentialsProvider .create (
90
- AwsBasicCredentials .create ("dummy-key " , "dummy-secret " )))
90
+ AwsBasicCredentials .create ("dummykey " , "dummysecret " )))
91
91
.overrideConfiguration (o -> o .addExecutionInterceptor (new VerifyUserAgentInterceptor ()))
92
92
.build ();
93
93
}
Original file line number Diff line number Diff line change 25
25
<relativePath >../../pom.xml</relativePath >
26
26
</parent >
27
27
<artifactId >iam-policy-builder</artifactId >
28
- <version >${awsjavasdk.version} </version >
29
28
<name >AWS Java SDK :: IAM :: Policy Builder</name >
30
29
<description >
31
30
Library simplifying the building, marshalling and unmarshalling of IAM Policies.
Original file line number Diff line number Diff line change 25
25
<relativePath >../../pom.xml</relativePath >
26
26
</parent >
27
27
<artifactId >s3-transfer-manager</artifactId >
28
- <version >${awsjavasdk.version} </version >
29
28
<name >AWS Java SDK :: S3 :: Transfer Manager</name >
30
29
<description >
31
30
The S3 Transfer Manager allows customers to easily and optimally
You can’t perform that action at this time.
0 commit comments