Search Gradle plugins

Version 1.0.1

Created 04 February 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.1"
}

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.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects