Search Gradle plugins

Version 0.0.11

Created 04 March 2020.

AWS SAM Gradle plugin easier deployment and development of AWS Lambdas

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.prazmok:aws-sam-gradle:0.0.11")
  }
}

apply(plugin = "com.github.prazmok.aws.sam")

Using the plugins DSL:

plugins {
  id "com.github.prazmok.aws.sam" version "0.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.prazmok:aws-sam-gradle:0.0.11"
  }
}

apply plugin: "com.github.prazmok.aws.sam"

Learn how to apply plugins to subprojects