Search Gradle plugins

Version 0.8.70

Created 03 March 2020.

Gradle plugin that provides a task to generate a HTML license report of your project.

Using the plugins DSL:

plugins {
  id("com.jaredsburrows.license") version "0.8.70"
}

Using legacy plugin application:

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

apply(plugin = "com.jaredsburrows.license")

Using the plugins DSL:

plugins {
  id "com.jaredsburrows.license" version "0.8.70"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.jaredsburrows:gradle-license-plugin:0.8.70"
  }
}

apply plugin: "com.jaredsburrows.license"

Learn how to apply plugins to subprojects