Gradle cleanup – downloadRobotServerPlugin, runIdeForUiTests configuration

pull/175/head
Jakub Chrzanowski 3 years ago committed by Jakub Chrzanowski
parent a87f931dbe
commit 744cf2afb4

@ -67,19 +67,6 @@ detekt {
// Configure UI tests plugin
// Read more: https://github.com/JetBrains/intellij-ui-test-robot
tasks {
withType<DownloadRobotServerPluginTask> {
version.set("0.10.3")
}
withType<RunIdeForUiTestTask> {
systemProperty("robot-server.port", "8082")
systemProperty("ide.mac.message.dialogs.as.sheets", "false")
systemProperty("jb.privacy.policy.text", "<!--999.999-->")
systemProperty("jb.consents.confirmation.enabled", "false")
}
}
tasks {
// Set the compatibility versions to 1.8
withType<JavaCompile> {
@ -120,6 +107,17 @@ tasks {
ideVersions.set(properties("pluginVerifierIdeVersions").split(',').map(String::trim).filter(String::isNotEmpty))
}
downloadRobotServerPlugin {
version.set("0.11.4")
}
runIdeForUiTests {
systemProperty("robot-server.port", "8082")
systemProperty("ide.mac.message.dialogs.as.sheets", "false")
systemProperty("jb.privacy.policy.text", "<!--999.999-->")
systemProperty("jb.consents.confirmation.enabled", "false")
}
publishPlugin {
dependsOn("patchChangelog")
token.set(System.getenv("PUBLISH_TOKEN"))

Loading…
Cancel
Save