搜索 Gradle 插件

版本 1.1.4(最新版)

1.1.4

创建于 2021 年 3 月 20 日。

计算文件的代码行数。

使用插件 DSL

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

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("CodeLineCounter:lineCounterPlugin:1.1.4")
  }
}

apply(plugin = "com.rowlandoti.lines")

使用插件 DSL

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

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "CodeLineCounter:lineCounterPlugin:1.1.4"
  }
}

apply plugin: "com.rowlandoti.lines"

学习如何将插件应用到子项目中