Search Gradle plugins

com.github.rundis.buster

Gradle plugin for running Buster.js test. Both for CI and local development

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

Version 0.2.4.2 (latest)

Created 24 November 2014.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects