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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.rsuiteCMS.gradlePhantomjsAssistant:com.github.rsuiteCMS.gradlePhantomjsAssistant.gradle.plugin:0.1-alpha-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.rsuiteCMS.gradlePhantomjsAssistant")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.rsuiteCMS.gradlePhantomjsAssistant:com.github.rsuiteCMS.gradlePhantomjsAssistant.gradle.plugin:0.1-alpha-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.github.rsuiteCMS.gradlePhantomjsAssistant")
  • Applying plugins to all subprojects .