se.premex.gross
Owner: Erik Eelde
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.3
Created 13 November 2024.
Add this plugin to your build using the plugins DSL:
plugins {
id("se.premex.gross") version "0.4.3"
}
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("se.premex.gross:se.premex.gross.gradle.plugin:0.4.3") }
It can then be applied in the precompiled script plugin:plugins { id("se.premex.gross") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.premex.gross:se.premex.gross.gradle.plugin:0.4.3") } } apply(plugin = "se.premex.gross")
- Applying plugins to all subprojects .