Search Gradle plugins

com.zegreatrob.tools.digger

This plugin finds and extracts information from git commits, including co-author data.

https://github.com/robertfmurdock/ze-great-tools

Sources: https://github.com/robertfmurdock/ze-great-tools

Version 1.0.22

1.0.22

Created 07 September 2023.

This plugin finds and extracts information from git commits, including co-author data.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.tools.digger") version "1.0.22"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.tools:digger-plugin:1.0.22")
      }
    }
    
    apply(plugin = "com.zegreatrob.tools.digger")
  • Applying plugins to all subprojects .