Search Gradle plugins

io.kitkit.publishing

Owner: rob boll

these aren't the droids you're looking for

http://kitkit.io

Sources: https://github.com/roboll/kitkit-gradle-base

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.kitkit.publishing") version "0.10.23"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.kitkit.gradle:gradle-base:0.10.23")
      }
    }
    
    apply(plugin = "io.kitkit.publishing")
  • Applying plugins to all subprojects .