Search Gradle plugins

Using the plugins DSL:

plugins {
  id("org.ysb33r.terraform.rc") version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ysb33r.gradle:terraform-gradle-base:0.13.0")
  }
}

apply(plugin = "org.ysb33r.terraform.rc")

Using the plugins DSL:

plugins {
  id "org.ysb33r.terraform.rc" version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ysb33r.gradle:terraform-gradle-base:0.13.0"
  }
}

apply plugin: "org.ysb33r.terraform.rc"

Learn how to apply plugins to subprojects