amdonov.ospackage-init
Owner: Aaron Donovan
Alternative to nebula.ospackage-daemon for init scripts
https://github.com/amdonov/gradle-init-plugin
Sources: https://github.com/amdonov/gradle-init-plugin
Version 0.5.0 (latest)
Created 03 September 2017.
Alternative to nebula.ospackage-daemon for init scripts
Add this plugin to your build using the plugins DSL:
plugins {
id("amdonov.ospackage-init") version "0.5.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("amdonov.ospackage-init:amdonov.ospackage-init.gradle.plugin:0.5.0") }
It can then be applied in the precompiled script plugin:plugins { id("amdonov.ospackage-init") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("amdonov.ospackage-init:amdonov.ospackage-init.gradle.plugin:0.5.0") } } apply(plugin = "amdonov.ospackage-init")
- Applying plugins to all subprojects .