Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
}
Expand Down Expand Up @@ -129,6 +129,10 @@ tasks {
})
}

runIde {
autoReloadPlugins.set(true)
}

// Configure UI tests plugin
// Read more: https://github.com/JetBrains/intellij-ui-test-robot
runIdeForUiTests {
Expand Down