io.github.usefulness.licensee-for-android
Owner: Mateusz Kwieciński
A plugin that generates a list of open source licenses you depend on
https://github.com/usefulness/licensee-for-android
Sources: https://github.com/usefulness/licensee-for-android
Version 0.2.2 (latest)
Created 29 January 2024.
A plugin that generates a list of open source licenses you depend on
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.usefulness.licensee-for-android") version "0.2.2"
}
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.usefulness.licensee-for-android:io.github.usefulness.licensee-for-android.gradle.plugin:0.2.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.usefulness.licensee-for-android") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.usefulness.licensee-for-android:io.github.usefulness.licensee-for-android.gradle.plugin:0.2.2") } } apply(plugin = "io.github.usefulness.licensee-for-android")
- Applying plugins to all subprojects .