Search Gradle plugins

Version 1.0.1 (latest)

1.0.1

Created 31 July 2015.

This plugin allows tasks that are defined within the same module to be executed in parallel

Using the plugins DSL:

plugins {
  id("com.github.paralleltasks") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.paralleltasks:parallel-tasks-gradle-plugin:1.0.1")
  }
}

apply(plugin = "com.github.paralleltasks")

Using the plugins DSL:

plugins {
  id "com.github.paralleltasks" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.paralleltasks:parallel-tasks-gradle-plugin:1.0.1"
  }
}

apply plugin: "com.github.paralleltasks"

Learn how to apply plugins to subprojects