com.github.paralleltasks
所有者: Barry Earles
此插件允许在同一模块内定义的任务并行执行
https://github.com/barryearles/parallel-tasks-gradle-plugin
来源: https://github.com/barryearles/parallel-tasks-gradle-plugin
版本 1.0.1 (最新)
1.0.1
创建于 2015 年 7 月 31 日。
此插件允许在同一模块内定义的任务并行执行
使用 plugins DSL
plugins {
id("com.github.paralleltasks") version "1.0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.paralleltasks:parallel-tasks-gradle-plugin:1.0.1")
}
}
apply(plugin = "com.github.paralleltasks")
使用 plugins DSL
plugins {
id "com.github.paralleltasks" version "1.0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.paralleltasks:parallel-tasks-gradle-plugin:1.0.1"
}
}
apply plugin: "com.github.paralleltasks"