Search Gradle plugins

Version 1.0.8 (latest)

1.0.8

Created 17 April 2016.

This plugin allows you to easily execute processes or tasks in the background of another task.

Using the plugins DSL:

plugins {
  id("com.pledgecomputers.gradle.spawn") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.pledgecomputers:gradle-selenium-plugin:1.0.8")
  }
}

apply(plugin = "com.pledgecomputers.gradle.spawn")

Using the plugins DSL:

plugins {
  id "com.pledgecomputers.gradle.spawn" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.pledgecomputers:gradle-selenium-plugin:1.0.8"
  }
}

apply plugin: "com.pledgecomputers.gradle.spawn"

Learn how to apply plugins to subprojects