The build.gradle file

Following are the contents of the build.gradle file:

apply plugin: 'java'apply plugin: 'idea'repositories {    mavenCentral()}sourceCompatibility = 1.8targetCompatibility = 1.8dependencies {    compile (        'com.amazonaws:aws-lambda-java-core:1.1.0',        'com.amazonaws:aws-lambda-java-log4j:1.0.0',        'com.fasterxml.jackson.core:jackson-core:2.8.5',        'com.fasterxml.jackson.core:jackson-databind:2.8.5',        'com.fasterxml.jackson.core:jackson-annotations:2.8.5',         'com.amazon.alexa:ask-sdk:2.5.5'    )}// Task for building the zip file for uploadtask buildZip(type: Zip) {    // Using the Zip API from gradle to build a zip file of all the dependencies    //    // The path to this zip file can be set in the serverless.yml file for the // package/artifact ...

Get Hands-On Serverless Applications with Kotlin now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.