Search Gradle plugins

io.github.jmatsu.license-list

License List Gradle Plugin allows you to manage licenses that your app contains and generate a viewer

https://github.com/jmatsu/license-list-plugin

Sources: https://github.com/jmatsu/license-list-plugin.git

Version 0.8.1 (latest)

Created 06 September 2021.

License List Gradle Plugin allows you to manage licenses that your app contains and generate a viewer

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.jmatsu.license-list") version "0.8.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.jmatsu.license-list:io.github.jmatsu.license-list.gradle.plugin:0.8.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.jmatsu.license-list")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.jmatsu.license-list:io.github.jmatsu.license-list.gradle.plugin:0.8.1")
      }
    }
    
    apply(plugin = "io.github.jmatsu.license-list")
  • Applying plugins to all subprojects .