ch.kk7.spawn
Owner: Key Seven
Spawn and kill UNIX processes with up-to-date checks.
https://github.com/keykey7/gradle-spawn-plugin
Sources: #{website}.git
Version 1.0.20180924200750 (latest)
Created 24 September 2018.
Spawn and kill UNIX processes with up-to-date checks.
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.kk7.spawn") version "1.0.20180924200750"
}
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("ch.kk7.spawn:ch.kk7.spawn.gradle.plugin:1.0.20180924200750") }
It can then be applied in the precompiled script plugin:plugins { id("ch.kk7.spawn") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.kk7.spawn:ch.kk7.spawn.gradle.plugin:1.0.20180924200750") } } apply(plugin = "ch.kk7.spawn")
- Applying plugins to all subprojects .