From 464473e6a0c94f9a617e061026c8538e9596a29b Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Fri, 2 Dec 2022 00:50:26 +0200 Subject: [PATCH 1/2] chore: remove unused gradle property --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index c65e93c9..f435e989 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -21,7 +21,6 @@ plugins { group = properties("pluginGroup") version = properties("pluginVersion") -val ktorVersion = properties("ktorVersion") dependencies { implementation("com.squareup.retrofit2:retrofit:2.9.0") // define a BOM and its version @@ -98,7 +97,8 @@ tasks { compilerVersion.set(properties("instrumentationCompiler")) } - // TODO - this fails with linkage error, remove when it works + // TODO - this fails with linkage error, but we don't need it now + // because the plugin does not provide anything to search for in Preferences buildSearchableOptions { isEnabled = false } From a9f8aade4712b75f5df535d14fb2212a6d6333ed Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Fri, 2 Dec 2022 01:13:55 +0200 Subject: [PATCH 2/2] Improve development cycle - allow plugin reload after build --- build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index f435e989..d0f01fba 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -129,6 +129,10 @@ tasks { }) } + runIde { + autoReloadPlugins.set(true) + } + // Configure UI tests plugin // Read more: https://github.com/JetBrains/intellij-ui-test-robot runIdeForUiTests {