Search Gradle plugins

com.github.evestera.depsize

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)

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"

Learn how to apply plugins to subprojects