com.github.evestera.depsize
Owner: Erik Vesteraas
Plugin that adds a task "depsize" which calculates and shows dependency sizes. For further documentation, see github repository.
https://github.com/evestera/gradle-depsize-plugin
Sources: https://github.com/evestera/gradle-depsize-plugin
Version 0.2.0 (latest)
0.2.0
Created 04 March 2021.
Plugin that adds a task "depsize" which calculates and shows dependency sizes.
For further documentation, see github repository.
Using the plugins DSL:
plugins {
id("com.github.evestera.depsize") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.evestera:gradle-depsize-plugin:0.2.0")
}
}
apply(plugin = "com.github.evestera.depsize")
Using the plugins DSL:
plugins {
id "com.github.evestera.depsize" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.evestera:gradle-depsize-plugin:0.2.0"
}
}
apply plugin: "com.github.evestera.depsize"