Search Gradle plugins

Version 2.2.0

Created 14 December 2017.

Selenium framework for Liferay GS projects!

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects