Search Gradle plugins

Version 6.3.2

Created 07 March 2023.

Optimize Kotlin library configuration

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.library") version "6.3.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects