tylerthrailkill.nebula-mit-license
Owner: Tyler Thrailkill
Adds the MIT License to the POM of a nebula publication to allow for publishing to Maven Central.
https://github.com/snowe2010/nebula-mit-license
Sources: https://github.com/snowe2010/nebula-mit-license.git
Version 0.0.3 (latest)
Created 13 April 2019.
Adds the MIT License to the POM of a nebula publication to allow for publishing to Maven Central.
Add this plugin to your build using the plugins DSL:
plugins {
id("tylerthrailkill.nebula-mit-license") version "0.0.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("tylerthrailkill.nebula-mit-license:tylerthrailkill.nebula-mit-license.gradle.plugin:0.0.3") }
It can then be applied in the precompiled script plugin:plugins { id("tylerthrailkill.nebula-mit-license") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tylerthrailkill.nebula-mit-license:tylerthrailkill.nebula-mit-license.gradle.plugin:0.0.3") } } apply(plugin = "tylerthrailkill.nebula-mit-license")
- Applying plugins to all subprojects .