Search Gradle plugins

Version 0.2

0.2

Created 17 May 2015.

A plugin for generating reports about the licenses of the dependencies for your Gradle project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.jk1.dependency-license-report") version "0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.jk1:gradle-license-report:0.2")
      }
    }
    
    apply(plugin = "com.github.jk1.dependency-license-report")
  • Applying plugins to all subprojects .