com.zasadnyy.appium
Owner:
Vitaliy Zasadnyy
Gradle plugin that start/stop Appium server on test task execution
https://github.com/zasadnyy/appium-gradle-plugin
Sources: https://github.com/zasadnyy/appium-gradle-plugin
Version 1.0.1 (latest)
Created 19 April 2016.
Gradle plugin that start/stop Appium server on test task execution
Add this plugin to your build using the plugins DSL:
plugins {
id("com.zasadnyy.appium") version "1.0.1"
}
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.zasadnyy.appium:com.zasadnyy.appium.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.zasadnyy.appium") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.zasadnyy.appium:com.zasadnyy.appium.gradle.plugin:1.0.1") } } apply(plugin = "com.zasadnyy.appium")
- Applying plugins to all subprojects .