Search Gradle plugins

Version 2.9 (latest)

Created 15 August 2024.

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.9"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:2.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.jk1.dependency-license-report")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:2.9")
      }
    }
    
    apply(plugin = "com.github.jk1.dependency-license-report")
  • Applying plugins to all subprojects .