info.gianlucacosta.moonlicense
Owner:
Gianluca Costa
MoonLicense integration into the Gradle build process
https://github.com/giancosta86/MoonLicense-Gradle
Sources: https://github.com/giancosta86/MoonLicense-Gradle
Version 1.0 (latest)
Created 08 April 2015.
MoonLicense integration into the Gradle build process
Add this plugin to your build using the plugins DSL:
plugins {
id("info.gianlucacosta.moonlicense") version "1.0"
}
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("info.gianlucacosta.moonlicense:info.gianlucacosta.moonlicense.gradle.plugin:1.0") }
It can then be applied in the precompiled script plugin:plugins { id("info.gianlucacosta.moonlicense") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.gianlucacosta.moonlicense:info.gianlucacosta.moonlicense.gradle.plugin:1.0") } } apply(plugin = "info.gianlucacosta.moonlicense")
- Applying plugins to all subprojects .