Search Gradle plugins

Version 3.0.2 (latest)

Created 10 July 2020.

Selenium framework for web projects!

Using the plugins DSL:

plugins {
  id("com.liferay.gs.testFramework") version "3.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay.gs:selenium-commons:3.0.2")
  }
}

apply(plugin = "com.liferay.gs.testFramework")

Using the plugins DSL:

plugins {
  id "com.liferay.gs.testFramework" version "3.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay.gs:selenium-commons:3.0.2"
  }
}

apply plugin: "com.liferay.gs.testFramework"

Learn how to apply plugins to subprojects