Search Gradle plugins

Using the plugins DSL:

plugins {
  id("com.brambolt.wrench.steps") version "2022.05.01-7057"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.brambolt.wrench:brambolt-wrench-steps:2022.05.01-7057")
  }
}

apply(plugin = "com.brambolt.wrench.steps")

Using the plugins DSL:

plugins {
  id "com.brambolt.wrench.steps" version "2022.05.01-7057"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.brambolt.wrench:brambolt-wrench-steps:2022.05.01-7057"
  }
}

apply plugin: "com.brambolt.wrench.steps"

Learn how to apply plugins to subprojects