Search Gradle plugins

aws.util.lambda

Owner: Allen

Develop AWS Lambda functions and use this plugin to upload/manage them.

https://github.com/ikakara-team/gradle-aws-util

Sources: https://github.com/ikakara-team/gradle-aws-util

Version 0.2-SNAPSHOT

Created 01 July 2015.

Develop AWS Lambda functions and use this plugin to upload/manage them.

Add this plugin to your build using the plugins DSL:

plugins {
  id("aws.util.lambda") version "0.2-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("aws.util.lambda:aws.util.lambda.gradle.plugin:0.2-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("aws.util.lambda")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("aws.util.lambda:aws.util.lambda.gradle.plugin:0.2-SNAPSHOT")
      }
    }
    
    apply(plugin = "aws.util.lambda")
  • Applying plugins to all subprojects .