com.cloudmation.aws-cloudformation
Owner: Matt Rapczynski
A project plugin that generates configurable tasks for deploying stacks of resources with AWS CloudFormation
https://github.com/cloudmation-llc/gradle-infrastructure-plugins
Sources: https://github.com/cloudmation-llc/gradle-infrastructure-plugins
Version 1.0.11 (latest)
1.0.11
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"