Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.react-dates") version "6.10.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.react-dates" version "6.10.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects