Search Gradle plugins

Version 3.1.3 (latest)

Created 12 January 2023.

Runs Espresso tests on BrowserStack

Using the plugins DSL:

plugins {
  id("com.browserstack.gradle") version "3.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.browserstack.gradle:browserstack-gradle-plugin:3.1.3")
  }
}

apply(plugin = "com.browserstack.gradle")

Using the plugins DSL:

plugins {
  id "com.browserstack.gradle" version "3.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.browserstack.gradle:browserstack-gradle-plugin:3.1.3"
  }
}

apply plugin: "com.browserstack.gradle"

Learn how to apply plugins to subprojects