Search Gradle plugins

com.github.rsuiteCMS.gradlePhantomjsAssistant

Gradle plugin to configure PhantomJS for automated testing. Automatically finds the requested version of PhantomJS for the running platform, downloads it, and configures the `test` task to make use of the binary.

https://www.github.com/rsuiteCMS/gradlePhantomjsAssistant

Sources: https://www.github.com/rsuiteCMS/gradlePhantomjsAssistant

Version 0.1-alpha-SNAPSHOT

Created 21 October 2015.


Gradle plugin to configure PhantomJS for automated testing. Automatically
finds the requested version of PhantomJS for the running platform, downloads
it, and configures the `test` task to make use of the binary.

Using the plugins DSL:

plugins {
  id("com.github.rsuiteCMS.gradlePhantomjsAssistant") version "0.1-alpha-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.rsuiteCMS:gradlePhantomjsAssistant:0.1-alpha-SNAPSHOT")
  }
}

apply(plugin = "com.github.rsuiteCMS.gradlePhantomjsAssistant")

Using the plugins DSL:

plugins {
  id "com.github.rsuiteCMS.gradlePhantomjsAssistant" version "0.1-alpha-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.rsuiteCMS:gradlePhantomjsAssistant:0.1-alpha-SNAPSHOT"
  }
}

apply plugin: "com.github.rsuiteCMS.gradlePhantomjsAssistant"

Learn how to apply plugins to subprojects