Search Gradle plugins

Version 1.0

Created 09 June 2018.

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects