Search Gradle plugins

de.waschndolos.licenseguard

Owner: Manuel

The Gradle license guard plugin can be used to generate a report of the licenses of 3rd party dependencies used in your project

https://github.com/Waschndolos/gradle-license-guard

Sources: https://github.com/Waschndolos/gradle-license-guard.git

Version 1.0

Created 07 December 2017.

The Gradle license guard plugin can be used to generate a report of the licenses of 3rd party dependencies used in your project

Using the plugins DSL:

plugins {
  id("de.waschndolos.licenseguard") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.waschndolos:gradle-license-guard:1.0")
  }
}

apply(plugin = "de.waschndolos.licenseguard")

Using the plugins DSL:

plugins {
  id "de.waschndolos.licenseguard" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.waschndolos:gradle-license-guard:1.0"
  }
}

apply plugin: "de.waschndolos.licenseguard"

Learn how to apply plugins to subprojects