com.thg.opensource.aws.cfnvalidate
Owner: Kevin Jackson
Provides validation for AWS cloudformation templates
https://github.com/OpenSource-THG
Sources: https://github.com/OpenSource-THG/cfnvalidate-plugin.git
Version 1.0.0 (latest)
1.0.0
Created 26 February 2018.
Provides validation for AWS cloudformation templates
Using the plugins DSL:
plugins {
id("com.thg.opensource.aws.cfnvalidate") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.thg.opensource.aws:cfnvalidate-plugin:1.0.0")
}
}
apply(plugin = "com.thg.opensource.aws.cfnvalidate")
Using the plugins DSL:
plugins {
id "com.thg.opensource.aws.cfnvalidate" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.thg.opensource.aws:cfnvalidate-plugin:1.0.0"
}
}
apply plugin: "com.thg.opensource.aws.cfnvalidate"