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.4
Created 10 June 2020.
A project plugin that generates configurable tasks for deploying stacks of resources with AWS CloudFormation
Add this plugin to your build using the plugins DSL:
plugins {
id("com.cloudmation.aws-cloudformation") version "1.0.4"
}
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("com.cloudmation.aws-cloudformation:com.cloudmation.aws-cloudformation.gradle.plugin:1.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.cloudmation.aws-cloudformation") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.cloudmation.aws-cloudformation:com.cloudmation.aws-cloudformation.gradle.plugin:1.0.4") } } apply(plugin = "com.cloudmation.aws-cloudformation")
- Applying plugins to all subprojects .