搜索Gradle插件

com.github.evestera.depsize

所有者: Erik Vesteraas

插件,添加一个"depsize"任务来计算和显示依赖项大小。有关更多文档,请参阅GitHub仓库。

https://github.com/evestera/gradle-depsize-plugin

来源: https://github.com/evestera/gradle-depsize-plugin

版本 0.2.0(最新版)

0.2.0

创建于2021年3月4日。

插件,添加一个"depsize"任务来计算和显示依赖项大小。有关更多文档,请参阅GitHub仓库。

使用plugins DSL

plugins {
  id("com.github.evestera.depsize") version "0.2.0"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.evestera:gradle-depsize-plugin:0.2.0")
  }
}

apply(plugin = "com.github.evestera.depsize")

使用plugins DSL

plugins {
  id "com.github.evestera.depsize" version "0.2.0"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.evestera:gradle-depsize-plugin:0.2.0"
  }
}

apply plugin: "com.github.evestera.depsize"

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