搜索Gradle插件

org.cthing.locc

所有者: Baron Roberts

使用快速且高度精确的locc4j库(https://github.com/cthing/locc4j)统计项目中的代码行数。支持250多种计算机语言,并正确处理嵌套注释和嵌入的语言(例如HTML中的CSS)。

https://github.com/cthing/gradle-locc

来源: https://github.com/cthing/gradle-locc

版本 1.0.1(最新版)

1.0.1

创建于 2024年4月18日。

使用快速且高度精确的locc4j库(https://github.com/cthing/locc4j)统计项目中的代码行数。支持250多种计算机语言,并正确处理嵌套注释和嵌入的语言(例如HTML中的CSS)。

使用 plugins DSL

plugins {
  id("org.cthing.locc") version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.cthing:gradle-locc:1.0.1")
  }
}

apply(plugin = "org.cthing.locc")

使用 plugins DSL

plugins {
  id "org.cthing.locc" version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.cthing:gradle-locc:1.0.1"
  }
}

apply plugin: "org.cthing.locc"

了解如何将插件应用到子项目