Search Gradle plugins

Version 1.0.11 (latest)

Created 05 July 2020.

A project plugin that generates configurable tasks for deploying stacks of resources with AWS CloudFormation

Using the plugins DSL:

plugins {
  id("com.cloudmation.aws-cloudformation") version "1.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.cloudmation:gradle-infrastructure-plugins:1.0.11")
  }
}

apply(plugin = "com.cloudmation.aws-cloudformation")

Using the plugins DSL:

plugins {
  id "com.cloudmation.aws-cloudformation" version "1.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.cloudmation:gradle-infrastructure-plugins:1.0.11"
  }
}

apply plugin: "com.cloudmation.aws-cloudformation"

Learn how to apply plugins to subprojects