Search Gradle plugins

Version 2.3

Created 25 May 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.jk1.dependency-license-report" version "2.3"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects