Created
February 14, 2017 01:28
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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