Skip to content

Commit

Permalink
chore: Upgrade sdk to 1.12 (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavaleri authored Aug 21, 2021
1 parent ffe233b commit c82d596
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions sdk1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.11.460</version>
<version>1.12.51</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -236,14 +236,14 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.0</version>
<version>2.12.4</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.8</version>
<version>2.12.4</version>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ private static <T> T getManifestFromFile(String filename, TypeReference typeRef)
}
final File manifestFile = new File(url.getPath());
final ObjectMapper manifestMapper = new ObjectMapper();
return manifestMapper.readValue(manifestFile, typeRef);
return (T) manifestMapper.readValue(manifestFile, typeRef);
}

private static void loadKeyData(String filename) throws IOException {
Expand Down

0 comments on commit c82d596

Please sign in to comment.