Search Gradle plugins

Version 1.3.0

1.3.0

Created 24 November 2020.

Predefined maven publications for Kotlin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.turansky.kfc.maven-publish") version "1.3.0"
}

See also:

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