Search Gradle plugins

Version 1.14.2

Created 21 May 2020.

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

Using the plugins DSL:

plugins {
  id("com.github.kkdad.dependency-license-report") version "1.14.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.kkdad:gradle-license-report:1.14.2")
  }
}

apply(plugin = "com.github.kkdad.dependency-license-report")

Using the plugins DSL:

plugins {
  id "com.github.kkdad.dependency-license-report" version "1.14.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.kkdad:gradle-license-report:1.14.2"
  }
}

apply plugin: "com.github.kkdad.dependency-license-report"

Learn how to apply plugins to subprojects