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.1.0

Created 10 May 2023.

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("se.premex:gross-plugin:0.1.0")
  }
}

apply(plugin = "se.premex.gross")

Using the plugins DSL:

plugins {
  id "se.premex.gross" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "se.premex:gross-plugin:0.1.0"
  }
}

apply plugin: "se.premex.gross"

Learn how to apply plugins to subprojects