Search Gradle plugins

Version 1.0.0 (latest)

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"

Learn how to apply plugins to subprojects