Search Gradle plugins

Version 2.1.5

Created 26 October 2017.

lfrgs-selenium-commons: Selenium framework for Liferay GS projects!

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects