Skip to content

Commit c82d596

Browse files
authored
chore: Upgrade sdk to 1.12 (#154)
1 parent ffe233b commit c82d596

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sdk1/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
<dependency>
150150
<groupId>com.amazonaws</groupId>
151151
<artifactId>aws-java-sdk-bom</artifactId>
152-
<version>1.11.460</version>
152+
<version>1.12.51</version>
153153
<type>pom</type>
154154
<scope>import</scope>
155155
</dependency>
@@ -236,14 +236,14 @@
236236
<dependency>
237237
<groupId>com.fasterxml.jackson.core</groupId>
238238
<artifactId>jackson-annotations</artifactId>
239-
<version>2.9.0</version>
239+
<version>2.12.4</version>
240240
<scope>test</scope>
241241
</dependency>
242242

243243
<dependency>
244244
<groupId>com.fasterxml.jackson.core</groupId>
245245
<artifactId>jackson-core</artifactId>
246-
<version>2.9.8</version>
246+
<version>2.12.4</version>
247247
<scope>test</scope>
248248
</dependency>
249249

sdk1/src/test/java/com/amazonaws/services/dynamodbv2/datamodeling/TransformerHolisticIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ private static <T> T getManifestFromFile(String filename, TypeReference typeRef)
882882
}
883883
final File manifestFile = new File(url.getPath());
884884
final ObjectMapper manifestMapper = new ObjectMapper();
885-
return manifestMapper.readValue(manifestFile, typeRef);
885+
return (T) manifestMapper.readValue(manifestFile, typeRef);
886886
}
887887

888888
private static void loadKeyData(String filename) throws IOException {

0 commit comments

Comments
 (0)