com.github.paralleltasks
Owner: Barry Earles
This plugin allows tasks that are defined within the same module to be executed in parallel
https://github.com/barryearles/parallel-tasks-gradle-plugin
Sources: https://github.com/barryearles/parallel-tasks-gradle-plugin
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"