Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.react") version "6.8.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.react" version "6.8.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects