Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.component") version "5.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.turansky.kfc:kfc-gradle-plugin:5.4.0")
  }
}

apply(plugin = "io.github.turansky.kfc.component")

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.component" version "5.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.turansky.kfc:kfc-gradle-plugin:5.4.0"
  }
}

apply plugin: "io.github.turansky.kfc.component"

Learn how to apply plugins to subprojects