Search Gradle plugins

ch.kk7.spawn

Spawn and kill UNIX processes with up-to-date checks.

https://github.com/keykey7/gradle-spawn-plugin

Sources: #{website}.git

Version 1.0.20180922224637

Created 23 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.20180922224637"
}

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.20180922224637")
    }
    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.20180922224637")
      }
    }
    
    apply(plugin = "ch.kk7.spawn")
  • Applying plugins to all subprojects .