com.github.RSuiteCMS.gradlePhantomjsAssistant
Owner: Bryan Elliott
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 (latest)
0.1-alpha
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.RSuiteCMS.gradlePhantomjsAssistant") version "0.1-alpha"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.github.RSuiteCMS:gradlePhantomjsAssistant:0.1-alpha") } } apply(plugin = "com.github.RSuiteCMS.gradlePhantomjsAssistant")
- Applying plugins to all subprojects .