com.liferay.gs.testFramework
所有者: Manoel Cyreno
lfrgs-selenium-commons: Liferay GS项目使用的Selenium框架!
https://github.com/manoelcyreno/selenium-commons
来源: https://github.com/manoelcyreno/lfrgs-selenium-commons
使用 plugins DSL
plugins {
id("com.liferay.gs.testFramework") version "3.0.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay.gs:selenium-commons:3.0.2")
}
}
apply(plugin = "com.liferay.gs.testFramework")
使用 plugins DSL
plugins {
id "com.liferay.gs.testFramework" version "3.0.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay.gs:selenium-commons:3.0.2"
}
}
apply plugin: "com.liferay.gs.testFramework"