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.15

Created 23 September 2020.

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

Using the plugins DSL:

plugins {
  id("com.josephdwyer.katana") version "0.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.josephdwyer.katana:KatanaPlugin:0.0.15")
  }
}

apply(plugin = "com.josephdwyer.katana")

Using the plugins DSL:

plugins {
  id "com.josephdwyer.katana" version "0.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.josephdwyer.katana:KatanaPlugin:0.0.15"
  }
}

apply plugin: "com.josephdwyer.katana"

Learn how to apply plugins to subprojects