com.pledgecomputers.gradle.spawn
所有者: Scott Pledger
此插件允许您轻松地在其他任务的背景下执行进程或任务。
https://gitlab.com/pledgecomputers/gradle-selenium-plugin
源码: https://gitlab.com/pledgecomputers/gradle-selenium-plugin
使用 插件 DSL
plugins {
id("com.pledgecomputers.gradle.spawn") version "1.0.8"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.pledgecomputers:gradle-selenium-plugin:1.0.8")
}
}
apply(plugin = "com.pledgecomputers.gradle.spawn")
使用 插件 DSL
plugins {
id "com.pledgecomputers.gradle.spawn" version "1.0.8"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.pledgecomputers:gradle-selenium-plugin:1.0.8"
}
}
apply plugin: "com.pledgecomputers.gradle.spawn"