搜索Gradle插件

com.github.rundis.buster

Gradle运行Buster.js测试的插件。适用于CI和本地开发

https://github.com/rundis/gradle-buster-plugin

版本 0.2.4.2(最新版)

0.2.4.2

创建于 2014年11月24日。

没有可用的版本描述。

使用插件DSL

plugins {
  id("com.github.rundis.buster") version "0.2.4.2"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.rundis:gradle-buster-plugin:0.2.4.2")
  }
}

apply(plugin = "com.github.rundis.buster")

使用插件DSL

plugins {
  id "com.github.rundis.buster" version "0.2.4.2"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.rundis:gradle-buster-plugin:0.2.4.2"
  }
}

apply plugin: "com.github.rundis.buster"

了解如何将插件应用于子项目