Search Gradle plugins

Version 0.0.11

0.0.11

Created 06 March 2019.

Binding AWS SAM

Add this plugin to your build using the plugins DSL:

plugins {
  id("aws.sam") version "0.0.11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.importre:aws-sam-gradle-plugin:0.0.11")
      }
    }
    
    apply(plugin = "aws.sam")
  • Applying plugins to all subprojects .