com.github.evestera.depsize
所有者: Erik Vesteraas
插件,添加一个"depsize"任务来计算和显示依赖项大小。有关更多文档,请参阅GitHub仓库。
https://github.com/evestera/gradle-depsize-plugin
来源: https://github.com/evestera/gradle-depsize-plugin
使用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"