Search Gradle plugins

Version 5.12.0

Created 27 April 2022.

Optimize Kotlin library configuration

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.library") version "5.12.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.12.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.library" version "5.12.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects