Search Gradle plugins

Version 4.82.0

4.82.0

Created 26 January 2022.

Provide publish tasks for gradle plugin project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.turansky.kfc.plugin-publish") version "4.82.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.turansky.kfc:kfc-gradle-plugin:4.82.0")
      }
    }
    
    apply(plugin = "com.github.turansky.kfc.plugin-publish")
  • Applying plugins to all subprojects .