Search Gradle plugins

Analyze source files and report code metrics including lines, characters, blank lines, and comment lines.

https://dev.tamkungz.me/

Sources: https://github.com/tamkungz/CodeTally.git

Version 1.0.2

Created 15 March 2026.

Analyze source files and report code metrics including lines, characters, blank lines, and comment lines.

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.tamkungz.codetally") version "1.0.2"
}

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("me.tamkungz.codetally:me.tamkungz.codetally.gradle.plugin:1.0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("me.tamkungz.codetally")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.tamkungz.codetally:me.tamkungz.codetally.gradle.plugin:1.0.2")
      }
    }
    
    apply(plugin = "me.tamkungz.codetally")
  • Applying plugins to all subprojects .