Search Gradle plugins

Version 2.3

2.3

Created 25 May 2023.

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 "2.3"
}

See also:

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