Search Gradle plugins

com.josephdwyer.katana

A simple plugin that extracts information about classes and functions from the build

https://github.com/josephdwyer/katana

Sources: https://github.com/josephdwyer/katana

Version 0.0.1-SNAPSHOT

Created 11 September 2020.

A simple plugin that extracts information about classes and functions from the build

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.josephdwyer.katana") version "0.0.1-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.josephdwyer.katana:com.josephdwyer.katana.gradle.plugin:0.0.1-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.josephdwyer.katana")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.josephdwyer.katana:com.josephdwyer.katana.gradle.plugin:0.0.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.josephdwyer.katana")
  • Applying plugins to all subprojects .