Skip to content

Instantly share code, notes, and snippets.

@gogarufi
Created February 14, 2017 01:28
Show Gist options
  • Save gogarufi/40b0188d7c1928f97ed26db6980c3a1d to your computer and use it in GitHub Desktop.
Save gogarufi/40b0188d7c1928f97ed26db6980c3a1d to your computer and use it in GitHub Desktop.
Maven dependencies to include AWS SES and core AWS Lambda SDKs in a Java project
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-core</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ses</artifactId>
<version>1.11.86</version>
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment