Search Gradle plugins

Using the plugins DSL:

plugins {
  id("org.ysb33r.terraform.remotestate.s3") version "0.15.0"
}

Using legacy plugin application:

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

apply(plugin = "org.ysb33r.terraform.remotestate.s3")

Using the plugins DSL:

plugins {
  id "org.ysb33r.terraform.remotestate.s3" version "0.15.0"
}

Using legacy plugin application:

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

apply plugin: "org.ysb33r.terraform.remotestate.s3"

Learn how to apply plugins to subprojects