pl.lyskawa.android.plugin.license-tools
Owner: Łukasz Łyskawa
Gradle plugin to check library licenses and generate license pages.
https://github.com/LukaszLyskawa/LicenseToolsPlugin
Sources: https://github.com/LukaszLyskawa/LicenseToolsPlugin.git
Version 1.2.6 (latest)
Created 26 October 2020.
Gradle plugin to check library licenses and generate license pages.
Add this plugin to your build using the plugins DSL:
plugins {
id("pl.lyskawa.android.plugin.license-tools") version "1.2.6"
}
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("pl.lyskawa.android.plugin.license-tools:pl.lyskawa.android.plugin.license-tools.gradle.plugin:1.2.6") }
It can then be applied in the precompiled script plugin:plugins { id("pl.lyskawa.android.plugin.license-tools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pl.lyskawa.android.plugin.license-tools:pl.lyskawa.android.plugin.license-tools.gradle.plugin:1.2.6") } } apply(plugin = "pl.lyskawa.android.plugin.license-tools")
- Applying plugins to all subprojects .