com.browserstack.gradle-sdk
Owner: BrowserStack
Cross browser testing for Gradle based projects with BrowserStack SDK
Sources: https://github.com/browserstack/browserstack-gradle-plugin
Version 3.1.6 (latest)
Created 07 August 2024.
Cross browser testing for Gradle based projects with BrowserStack SDK
Add this plugin to your build using the plugins DSL:
plugins {
id("com.browserstack.gradle-sdk") version "3.1.6"
}
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.browserstack.gradle-sdk:com.browserstack.gradle-sdk.gradle.plugin:3.1.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.browserstack.gradle-sdk") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.browserstack.gradle-sdk:com.browserstack.gradle-sdk.gradle.plugin:3.1.6") } } apply(plugin = "com.browserstack.gradle-sdk")
- Applying plugins to all subprojects .