Skip to content

Instantly share code, notes, and snippets.

@vichu
Last active March 21, 2018 18:06
Show Gist options
  • Save vichu/8d8774713c9dd4b38567b1dee7890c6c to your computer and use it in GitHub Desktop.
Save vichu/8d8774713c9dd4b38567b1dee7890c6c to your computer and use it in GitHub Desktop.
Pom.xml - AmazonS3ResourceExample
<!-- Exclude aws-java-sdk-core -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-aws</artifactId>
<exclusions>
<exclusion>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Include the right version of the dependency -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.11.106</version>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment