Search Gradle plugins

Version 1.1.4 (latest)

1.1.4

Created 20 March 2021.

Count the no. of lines of code in a file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.rowlandoti.lines") version "1.1.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("CodeLineCounter:lineCounterPlugin:1.1.4")
      }
    }
    
    apply(plugin = "com.rowlandoti.lines")
  • Applying plugins to all subprojects .