Remove runIdeForUiTests obsolete task from build.gradle.kts.

This commit is contained in:
Jakub Chrzanowski
2026-04-13 21:32:47 +02:00
parent 979fc454b7
commit 1abc56e093
2 changed files with 1 additions and 21 deletions

View File

@@ -31,6 +31,7 @@
- Remove `pluginVersion` configuration from `build.gradle.kts`.
- Remove `pluginName` property from `gradle.properties` and `build.gradle.kts` as it is already set in the `plugin.xml`
- Remove `intellijPlatform.publishing.channels` configuration from `build.gradle.kts`.
- Remove `runIdeForUiTests` obsolete task from `build.gradle.kts`.
## [2.4.1] - 2026-03-20

View File

@@ -62,24 +62,3 @@ tasks {
dependsOn(patchChangelog)
}
}
intellijPlatformTesting {
runIde {
register("runIdeForUiTests") {
task {
jvmArgumentProviders += CommandLineArgumentProvider {
listOf(
"-Drobot-server.port=8082",
"-Dide.mac.message.dialogs.as.sheets=false",
"-Djb.privacy.policy.text=<!--999.999-->",
"-Djb.consents.confirmation.enabled=false",
)
}
}
plugins {
robotServerPlugin()
}
}
}
}