Search Gradle plugins

Version 0.3.1

Created 17 July 2015.

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects