Search Gradle plugins

Version 4.3.1

4.3.1

Created 08 May 2021.

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.3.1"
}

See also:

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