Search Gradle plugins

Version 0.2.0 (latest)

Created 13 July 2020.

Creates reports of licenses used in your build.

Using the plugins DSL:

plugins {
  id("com.github.deepy.licensing-report") version "0.2.0"
}

Using legacy plugin application:

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

apply(plugin = "com.github.deepy.licensing-report")

Using the plugins DSL:

plugins {
  id "com.github.deepy.licensing-report" version "0.2.0"
}

Using legacy plugin application:

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

apply plugin: "com.github.deepy.licensing-report"

Learn how to apply plugins to subprojects