Search Gradle plugins

se.premex.gross

Generates a list of open source licenses you depend on. Depends on the output of licensee from cashapp - https://github.com/cashapp/licensee. Can generate a static list or copy licenses to android assets. As licensee supports KMM the plugin could support more platforms but current only supports android.

https://github.com/premex-ab/gross

Sources: https://github.com/premex-ab/gross.git

Version 0.4.4 (latest)

0.4.4

Created 13 November 2024.

Generates a list of open source licenses you depend on. Depends on the output of licensee from cashapp - https://github.com/cashapp/licensee. Can generate a static list or copy licenses to android assets. As licensee supports KMM the plugin could support more platforms but current only supports android.

Add this plugin to your build using the plugins DSL:

plugins {
  id("se.premex.gross") version "0.4.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("se.premex:gross-plugin:0.4.4")
      }
    }
    
    apply(plugin = "se.premex.gross")
  • Applying plugins to all subprojects .