Search Gradle plugins

Version 3.7.1

Created 15 April 2021.

Optimize Kotlin library configuration

Using the plugins DSL:

plugins {
  id("com.github.turansky.kfc.library") version "3.7.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.turansky.kfc.library" version "3.7.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects