mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Gradle cleanup – downloadRobotServerPlugin, runIdeForUiTests configuration
This commit is contained in:
parent
a87f931dbe
commit
744cf2afb4
@ -67,19 +67,6 @@ detekt {
|
|||||||
|
|
||||||
// Configure UI tests plugin
|
// Configure UI tests plugin
|
||||||
// Read more: https://github.com/JetBrains/intellij-ui-test-robot
|
// 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 {
|
tasks {
|
||||||
// Set the compatibility versions to 1.8
|
// Set the compatibility versions to 1.8
|
||||||
withType<JavaCompile> {
|
withType<JavaCompile> {
|
||||||
@ -120,6 +107,17 @@ tasks {
|
|||||||
ideVersions.set(properties("pluginVerifierIdeVersions").split(',').map(String::trim).filter(String::isNotEmpty))
|
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 {
|
publishPlugin {
|
||||||
dependsOn("patchChangelog")
|
dependsOn("patchChangelog")
|
||||||
token.set(System.getenv("PUBLISH_TOKEN"))
|
token.set(System.getenv("PUBLISH_TOKEN"))
|
||||||
|
Loading…
Reference in New Issue
Block a user