Search Gradle plugins

Version 0.1.0-SNAPSHOT

0.1.0-SNAPSHOT

Created 14 November 2018.

Simple View Your Project Dependencies

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.whl.dependencies-view") version "0.1.0-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.whl:dependencies-view:0.1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.whl.dependencies-view")
  • Applying plugins to all subprojects .